OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [nlm/] [gdbserve.c] - Diff between revs 107 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 107 Rev 1765
/* gdbserve.c -- NLM debugging stub for Novell NetWare.
/* gdbserve.c -- NLM debugging stub for Novell NetWare.
 
 
   This is originally based on an m68k software stub written by Glenn
   This is originally based on an m68k software stub written by Glenn
   Engel at HP, but has changed quite a bit.  It was modified for the
   Engel at HP, but has changed quite a bit.  It was modified for the
   i386 by Jim Kingdon, Cygnus Support.  It was modified to run under
   i386 by Jim Kingdon, Cygnus Support.  It was modified to run under
   NetWare by Ian Lance Taylor, Cygnus Support.
   NetWare by Ian Lance Taylor, Cygnus Support.
 
 
   This code is intended to produce an NLM (a NetWare Loadable Module)
   This code is intended to produce an NLM (a NetWare Loadable Module)
   to run under Novell NetWare.  To create the NLM, compile this code
   to run under Novell NetWare.  To create the NLM, compile this code
   into an object file using the NLM SDK on any i386 host, and use the
   into an object file using the NLM SDK on any i386 host, and use the
   nlmconv program (available in the GNU binutils) to transform the
   nlmconv program (available in the GNU binutils) to transform the
   resulting object file into an NLM.  */
   resulting object file into an NLM.  */
 
 
/****************************************************************************
/****************************************************************************
 
 
                THIS SOFTWARE IS NOT COPYRIGHTED
                THIS SOFTWARE IS NOT COPYRIGHTED
 
 
   HP offers the following for use in the public domain.  HP makes no
   HP offers the following for use in the public domain.  HP makes no
   warranty with regard to the software or it's performance and the
   warranty with regard to the software or it's performance and the
   user accepts the software "AS IS" with all faults.
   user accepts the software "AS IS" with all faults.
 
 
   HP DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD
   HP DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD
   TO THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES
   TO THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES
   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 
 
****************************************************************************/
****************************************************************************/
 
 
/****************************************************************************
/****************************************************************************
 *
 *
 *    The following gdb commands are supported:
 *    The following gdb commands are supported:
 *
 *
 * command          function                               Return value
 * command          function                               Return value
 *
 *
 *    g             return the value of the CPU registers  hex data or ENN
 *    g             return the value of the CPU registers  hex data or ENN
 *    G             set the value of the CPU registers     OK or ENN
 *    G             set the value of the CPU registers     OK or ENN
 *
 *
 *    mAA..AA,LLLL  Read LLLL bytes at address AA..AA      hex data or ENN
 *    mAA..AA,LLLL  Read LLLL bytes at address AA..AA      hex data or ENN
 *    MAA..AA,LLLL: Write LLLL bytes at address AA.AA      OK or ENN
 *    MAA..AA,LLLL: Write LLLL bytes at address AA.AA      OK or ENN
 *
 *
 *    c             Resume at current address              SNN   ( signal NN)
 *    c             Resume at current address              SNN   ( signal NN)
 *    cAA..AA       Continue at address AA..AA             SNN
 *    cAA..AA       Continue at address AA..AA             SNN
 *
 *
 *    s             Step one instruction                   SNN
 *    s             Step one instruction                   SNN
 *    sAA..AA       Step one instruction from AA..AA       SNN
 *    sAA..AA       Step one instruction from AA..AA       SNN
 *
 *
 *    k             kill
 *    k             kill
 *
 *
 *    ?             What was the last sigval ?             SNN   (signal NN)
 *    ?             What was the last sigval ?             SNN   (signal NN)
 *
 *
 * All commands and responses are sent with a packet which includes a
 * All commands and responses are sent with a packet which includes a
 * checksum.  A packet consists of
 * checksum.  A packet consists of
 *
 *
 * $<packet info>#<checksum>.
 * $<packet info>#<checksum>.
 *
 *
 * where
 * where
 * <packet info> :: <characters representing the command or response>
 * <packet info> :: <characters representing the command or response>
 * <checksum>    :: < two hex digits computed as modulo 256 sum of <packetinfo>>
 * <checksum>    :: < two hex digits computed as modulo 256 sum of <packetinfo>>
 *
 *
 * When a packet is received, it is first acknowledged with either '+' or '-'.
 * When a packet is received, it is first acknowledged with either '+' or '-'.
 * '+' indicates a successful transfer.  '-' indicates a failed transfer.
 * '+' indicates a successful transfer.  '-' indicates a failed transfer.
 *
 *
 * Example:
 * Example:
 *
 *
 * Host:                  Reply:
 * Host:                  Reply:
 * $m0,10#2a               +$00010203040506070809101112131415#42
 * $m0,10#2a               +$00010203040506070809101112131415#42
 *
 *
 ****************************************************************************/
 ****************************************************************************/
 
 
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <string.h>
#include <stdlib.h>
#include <stdlib.h>
#include <ctype.h>
#include <ctype.h>
#include <errno.h>
#include <errno.h>
#include <time.h>
#include <time.h>
 
 
#ifdef __i386__
#ifdef __i386__
#include <dfs.h>
#include <dfs.h>
#include <conio.h>
#include <conio.h>
#include <advanced.h>
#include <advanced.h>
#include <debugapi.h>
#include <debugapi.h>
#include <process.h>
#include <process.h>
#else
#else
#include <nwtypes.h>
#include <nwtypes.h>
#include <nwdfs.h>
#include <nwdfs.h>
#include <nwconio.h>
#include <nwconio.h>
#include <nwadv.h>
#include <nwadv.h>
#include <nwdbgapi.h>
#include <nwdbgapi.h>
#include <nwthread.h>
#include <nwthread.h>
#endif
#endif
 
 
#include <aio.h>
#include <aio.h>
#include "cpu.h"
#include "cpu.h"
 
 
 
 
/****************************************************/
/****************************************************/
/* This information is from Novell.  It is not in any of the standard
/* This information is from Novell.  It is not in any of the standard
   NetWare header files.  */
   NetWare header files.  */
 
 
struct DBG_LoadDefinitionStructure
struct DBG_LoadDefinitionStructure
{
{
        void *reserved1[4];
        void *reserved1[4];
        LONG reserved5;
        LONG reserved5;
        LONG LDCodeImageOffset;
        LONG LDCodeImageOffset;
        LONG LDCodeImageLength;
        LONG LDCodeImageLength;
        LONG LDDataImageOffset;
        LONG LDDataImageOffset;
        LONG LDDataImageLength;
        LONG LDDataImageLength;
        LONG LDUninitializedDataLength;
        LONG LDUninitializedDataLength;
        LONG LDCustomDataOffset;
        LONG LDCustomDataOffset;
        LONG LDCustomDataSize;
        LONG LDCustomDataSize;
        LONG reserved6[2];
        LONG reserved6[2];
        LONG (*LDInitializationProcedure)(void);
        LONG (*LDInitializationProcedure)(void);
};
};
 
 
#define LO_NORMAL               0x0000
#define LO_NORMAL               0x0000
#define LO_STARTUP              0x0001
#define LO_STARTUP              0x0001
#define LO_PROTECT              0x0002
#define LO_PROTECT              0x0002
#define LO_DEBUG                0x0004
#define LO_DEBUG                0x0004
#define LO_AUTO_LOAD            0x0008
#define LO_AUTO_LOAD            0x0008
 
 
/* Loader returned error codes */
/* Loader returned error codes */
#define LOAD_COULD_NOT_FIND_FILE                1
#define LOAD_COULD_NOT_FIND_FILE                1
#define LOAD_ERROR_READING_FILE                 2
#define LOAD_ERROR_READING_FILE                 2
#define LOAD_NOT_NLM_FILE_FORMAT                3
#define LOAD_NOT_NLM_FILE_FORMAT                3
#define LOAD_WRONG_NLM_FILE_VERSION             4
#define LOAD_WRONG_NLM_FILE_VERSION             4
#define LOAD_REENTRANT_INITIALIZE_FAILURE       5
#define LOAD_REENTRANT_INITIALIZE_FAILURE       5
#define LOAD_CAN_NOT_LOAD_MULTIPLE_COPIES       6
#define LOAD_CAN_NOT_LOAD_MULTIPLE_COPIES       6
#define LOAD_ALREADY_IN_PROGRESS                7
#define LOAD_ALREADY_IN_PROGRESS                7
#define LOAD_NOT_ENOUGH_MEMORY                  8
#define LOAD_NOT_ENOUGH_MEMORY                  8
#define LOAD_INITIALIZE_FAILURE                 9
#define LOAD_INITIALIZE_FAILURE                 9
#define LOAD_INCONSISTENT_FILE_FORMAT           10
#define LOAD_INCONSISTENT_FILE_FORMAT           10
#define LOAD_CAN_NOT_LOAD_AT_STARTUP            11
#define LOAD_CAN_NOT_LOAD_AT_STARTUP            11
#define LOAD_AUTO_LOAD_MODULES_NOT_LOADED       12
#define LOAD_AUTO_LOAD_MODULES_NOT_LOADED       12
#define LOAD_UNRESOLVED_EXTERNAL                13
#define LOAD_UNRESOLVED_EXTERNAL                13
#define LOAD_PUBLIC_ALREADY_DEFINED             14
#define LOAD_PUBLIC_ALREADY_DEFINED             14
/****************************************************/
/****************************************************/
 
 
/* The main thread ID.  */
/* The main thread ID.  */
static int mainthread;
static int mainthread;
 
 
/* An error message for the main thread to print.  */
/* An error message for the main thread to print.  */
static char *error_message;
static char *error_message;
 
 
/* The AIO port handle.  */
/* The AIO port handle.  */
static int AIOhandle;
static int AIOhandle;
 
 
/* BUFMAX defines the maximum number of characters in inbound/outbound
/* BUFMAX defines the maximum number of characters in inbound/outbound
   buffers.  At least NUMREGBYTES*2 are needed for register packets */
   buffers.  At least NUMREGBYTES*2 are needed for register packets */
#define BUFMAX (REGISTER_BYTES * 2 + 16)
#define BUFMAX (REGISTER_BYTES * 2 + 16)
 
 
/* remote_debug > 0 prints ill-formed commands in valid packets and
/* remote_debug > 0 prints ill-formed commands in valid packets and
   checksum errors. */
   checksum errors. */
static int remote_debug = 1;
static int remote_debug = 1;
 
 
static const char hexchars[] = "0123456789abcdef";
static const char hexchars[] = "0123456789abcdef";
 
 
unsigned char breakpoint_insn[] = BREAKPOINT;
unsigned char breakpoint_insn[] = BREAKPOINT;
 
 
char *mem2hex (void *mem, char *buf, int count, int may_fault);
char *mem2hex (void *mem, char *buf, int count, int may_fault);
char *hex2mem (char *buf, void *mem, int count, int may_fault);
char *hex2mem (char *buf, void *mem, int count, int may_fault);
extern void set_step_traps (struct StackFrame *);
extern void set_step_traps (struct StackFrame *);
extern void clear_step_traps (struct StackFrame *);
extern void clear_step_traps (struct StackFrame *);
 
 
static int __main() {};
static int __main() {};
 
 
/* Read a character from the serial port.  This must busy wait, but
/* Read a character from the serial port.  This must busy wait, but
   that's OK because we will be the only thread running anyhow.  */
   that's OK because we will be the only thread running anyhow.  */
 
 
static int
static int
getDebugChar ()
getDebugChar ()
{
{
  int err;
  int err;
  LONG got;
  LONG got;
  unsigned char ret;
  unsigned char ret;
 
 
  do
  do
    {
    {
      err = AIOReadData (AIOhandle, (char *) &ret, 1, &got);
      err = AIOReadData (AIOhandle, (char *) &ret, 1, &got);
      if (err != 0)
      if (err != 0)
        {
        {
          error_message = "AIOReadData failed";
          error_message = "AIOReadData failed";
          ResumeThread (mainthread);
          ResumeThread (mainthread);
          return -1;
          return -1;
        }
        }
    }
    }
  while (got == 0);
  while (got == 0);
 
 
  return ret;
  return ret;
}
}
 
 
/* Write a character to the serial port.  Returns 0 on failure,
/* Write a character to the serial port.  Returns 0 on failure,
   non-zero on success.  */
   non-zero on success.  */
 
 
static int
static int
putDebugChar (c)
putDebugChar (c)
     unsigned char c;
     unsigned char c;
{
{
  int err;
  int err;
  LONG put;
  LONG put;
 
 
  put = 0;
  put = 0;
  while (put < 1)
  while (put < 1)
    {
    {
      err = AIOWriteData (AIOhandle, (char *) &c, 1, &put);
      err = AIOWriteData (AIOhandle, (char *) &c, 1, &put);
      if (err != 0)
      if (err != 0)
        ConsolePrintf ("AIOWriteData: err = %d, put = %d\r\n", err, put);
        ConsolePrintf ("AIOWriteData: err = %d, put = %d\r\n", err, put);
    }
    }
  return 1;
  return 1;
}
}
 
 
/* Turn a hex character into a number.  */
/* Turn a hex character into a number.  */
 
 
static int
static int
hex (ch)
hex (ch)
     char ch;
     char ch;
{
{
  if ((ch >= 'a') && (ch <= 'f'))
  if ((ch >= 'a') && (ch <= 'f'))
    return (ch-'a'+10);
    return (ch-'a'+10);
  if ((ch >= '0') && (ch <= '9'))
  if ((ch >= '0') && (ch <= '9'))
    return (ch-'0');
    return (ch-'0');
  if ((ch >= 'A') && (ch <= 'F'))
  if ((ch >= 'A') && (ch <= 'F'))
    return (ch-'A'+10);
    return (ch-'A'+10);
  return (-1);
  return (-1);
}
}
 
 
/* Scan for the sequence $<data>#<checksum>.  Returns 0 on failure,
/* Scan for the sequence $<data>#<checksum>.  Returns 0 on failure,
   non-zero on success.  */
   non-zero on success.  */
 
 
static int
static int
getpacket (buffer)
getpacket (buffer)
     char * buffer;
     char * buffer;
{
{
  unsigned char checksum;
  unsigned char checksum;
  unsigned char xmitcsum;
  unsigned char xmitcsum;
  int i;
  int i;
  int count;
  int count;
  int ch;
  int ch;
 
 
  do
  do
    {
    {
      /* wait around for the start character, ignore all other characters */
      /* wait around for the start character, ignore all other characters */
      while ((ch = getDebugChar()) != '$')
      while ((ch = getDebugChar()) != '$')
        if (ch == -1)
        if (ch == -1)
          return 0;
          return 0;
      checksum = 0;
      checksum = 0;
      xmitcsum = -1;
      xmitcsum = -1;
 
 
      count = 0;
      count = 0;
 
 
      /* now, read until a # or end of buffer is found */
      /* now, read until a # or end of buffer is found */
      while (count < BUFMAX)
      while (count < BUFMAX)
        {
        {
          ch = getDebugChar();
          ch = getDebugChar();
          if (ch == -1)
          if (ch == -1)
            return 0;
            return 0;
          if (ch == '#')
          if (ch == '#')
            break;
            break;
          checksum = checksum + ch;
          checksum = checksum + ch;
          buffer[count] = ch;
          buffer[count] = ch;
          count = count + 1;
          count = count + 1;
        }
        }
      buffer[count] = 0;
      buffer[count] = 0;
 
 
      if (ch == '#')
      if (ch == '#')
        {
        {
          ch = getDebugChar ();
          ch = getDebugChar ();
          if (ch == -1)
          if (ch == -1)
            return 0;
            return 0;
          xmitcsum = hex(ch) << 4;
          xmitcsum = hex(ch) << 4;
          ch = getDebugChar ();
          ch = getDebugChar ();
          if (ch == -1)
          if (ch == -1)
            return 0;
            return 0;
          xmitcsum += hex(ch);
          xmitcsum += hex(ch);
 
 
          if (checksum != xmitcsum)
          if (checksum != xmitcsum)
            {
            {
              if (remote_debug)
              if (remote_debug)
                ConsolePrintf ("bad checksum.  My count = 0x%x, sent=0x%x. buf=%s\n",
                ConsolePrintf ("bad checksum.  My count = 0x%x, sent=0x%x. buf=%s\n",
                               checksum,xmitcsum,buffer);
                               checksum,xmitcsum,buffer);
              /* failed checksum */
              /* failed checksum */
              if (! putDebugChar('-'))
              if (! putDebugChar('-'))
                return 0;
                return 0;
              return 1;
              return 1;
            }
            }
          else
          else
            {
            {
              /* successful transfer */
              /* successful transfer */
              if (! putDebugChar('+'))
              if (! putDebugChar('+'))
                return 0;
                return 0;
              /* if a sequence char is present, reply the sequence ID */
              /* if a sequence char is present, reply the sequence ID */
              if (buffer[2] == ':')
              if (buffer[2] == ':')
                {
                {
                  if (! putDebugChar (buffer[0])
                  if (! putDebugChar (buffer[0])
                      || ! putDebugChar (buffer[1]))
                      || ! putDebugChar (buffer[1]))
                    return 0;
                    return 0;
                  /* remove sequence chars from buffer */
                  /* remove sequence chars from buffer */
                  count = strlen(buffer);
                  count = strlen(buffer);
                  for (i=3; i <= count; i++)
                  for (i=3; i <= count; i++)
                    buffer[i-3] = buffer[i];
                    buffer[i-3] = buffer[i];
                }
                }
            }
            }
        }
        }
    }
    }
  while (checksum != xmitcsum);
  while (checksum != xmitcsum);
 
 
  if (remote_debug)
  if (remote_debug)
    ConsolePrintf ("Received packet \"%s\"\r\n", buffer);
    ConsolePrintf ("Received packet \"%s\"\r\n", buffer);
 
 
  return 1;
  return 1;
}
}
 
 
/* Send the packet in buffer.  Returns 0 on failure, non-zero on
/* Send the packet in buffer.  Returns 0 on failure, non-zero on
   success.  */
   success.  */
 
 
static int
static int
putpacket (buffer)
putpacket (buffer)
     char * buffer;
     char * buffer;
{
{
  unsigned char checksum;
  unsigned char checksum;
  int count;
  int count;
  int ch;
  int ch;
 
 
  if (remote_debug)
  if (remote_debug)
    ConsolePrintf ("Sending packet \"%s\"\r\n", buffer);
    ConsolePrintf ("Sending packet \"%s\"\r\n", buffer);
 
 
  /*  $<packet info>#<checksum>. */
  /*  $<packet info>#<checksum>. */
  do
  do
    {
    {
      if (! putDebugChar('$'))
      if (! putDebugChar('$'))
        return 0;
        return 0;
      checksum = 0;
      checksum = 0;
      count = 0;
      count = 0;
 
 
      while (ch=buffer[count])
      while (ch=buffer[count])
        {
        {
          if (! putDebugChar(ch))
          if (! putDebugChar(ch))
            return 0;
            return 0;
          checksum += ch;
          checksum += ch;
          count += 1;
          count += 1;
        }
        }
 
 
      if (! putDebugChar('#')
      if (! putDebugChar('#')
          || ! putDebugChar(hexchars[checksum >> 4])
          || ! putDebugChar(hexchars[checksum >> 4])
          || ! putDebugChar(hexchars[checksum % 16]))
          || ! putDebugChar(hexchars[checksum % 16]))
        return 0;
        return 0;
 
 
      ch = getDebugChar ();
      ch = getDebugChar ();
      if (ch == -1)
      if (ch == -1)
        return 0;
        return 0;
    }
    }
  while (ch != '+');
  while (ch != '+');
 
 
  return 1;
  return 1;
}
}
 
 
static char remcomInBuffer[BUFMAX];
static char remcomInBuffer[BUFMAX];
static char remcomOutBuffer[BUFMAX];
static char remcomOutBuffer[BUFMAX];
static short error;
static short error;
 
 
static void
static void
debug_error (format, parm)
debug_error (format, parm)
     char *format;
     char *format;
     char *parm;
     char *parm;
{
{
  if (remote_debug)
  if (remote_debug)
    {
    {
      ConsolePrintf (format, parm);
      ConsolePrintf (format, parm);
      ConsolePrintf ("\n");
      ConsolePrintf ("\n");
    }
    }
}
}
 
 
/* This is set if we could get a memory access fault.  */
/* This is set if we could get a memory access fault.  */
static int mem_may_fault;
static int mem_may_fault;
 
 
/* Indicate to caller of mem2hex or hex2mem that there has been an
/* Indicate to caller of mem2hex or hex2mem that there has been an
   error.  */
   error.  */
volatile int mem_err = 0;
volatile int mem_err = 0;
 
 
#ifndef ALTERNATE_MEM_FUNCS
#ifndef ALTERNATE_MEM_FUNCS
/* These are separate functions so that they are so short and sweet
/* These are separate functions so that they are so short and sweet
   that the compiler won't save any registers (if there is a fault
   that the compiler won't save any registers (if there is a fault
   to mem_fault, they won't get restored, so there better not be any
   to mem_fault, they won't get restored, so there better not be any
   saved).  */
   saved).  */
 
 
int
int
get_char (addr)
get_char (addr)
     char *addr;
     char *addr;
{
{
  return *addr;
  return *addr;
}
}
 
 
void
void
set_char (addr, val)
set_char (addr, val)
     char *addr;
     char *addr;
     int val;
     int val;
{
{
  *addr = val;
  *addr = val;
}
}
#endif /* ALTERNATE_MEM_FUNCS */
#endif /* ALTERNATE_MEM_FUNCS */
 
 
/* convert the memory pointed to by mem into hex, placing result in buf */
/* convert the memory pointed to by mem into hex, placing result in buf */
/* return a pointer to the last char put in buf (null) */
/* return a pointer to the last char put in buf (null) */
/* If MAY_FAULT is non-zero, then we should set mem_err in response to
/* If MAY_FAULT is non-zero, then we should set mem_err in response to
   a fault; if zero treat a fault like any other fault in the stub.  */
   a fault; if zero treat a fault like any other fault in the stub.  */
 
 
char *
char *
mem2hex (mem, buf, count, may_fault)
mem2hex (mem, buf, count, may_fault)
     void *mem;
     void *mem;
     char *buf;
     char *buf;
     int count;
     int count;
     int may_fault;
     int may_fault;
{
{
  int i;
  int i;
  unsigned char ch;
  unsigned char ch;
  char *ptr = mem;
  char *ptr = mem;
 
 
  mem_may_fault = may_fault;
  mem_may_fault = may_fault;
  for (i = 0; i < count; i++)
  for (i = 0; i < count; i++)
    {
    {
      ch = get_char (ptr++);
      ch = get_char (ptr++);
      if (may_fault && mem_err)
      if (may_fault && mem_err)
        return (buf);
        return (buf);
      *buf++ = hexchars[ch >> 4];
      *buf++ = hexchars[ch >> 4];
      *buf++ = hexchars[ch % 16];
      *buf++ = hexchars[ch % 16];
    }
    }
  *buf = 0;
  *buf = 0;
  mem_may_fault = 0;
  mem_may_fault = 0;
  return(buf);
  return(buf);
}
}
 
 
/* convert the hex array pointed to by buf into binary to be placed in mem */
/* convert the hex array pointed to by buf into binary to be placed in mem */
/* return a pointer to the character AFTER the last byte written */
/* return a pointer to the character AFTER the last byte written */
 
 
char *
char *
hex2mem (buf, mem, count, may_fault)
hex2mem (buf, mem, count, may_fault)
     char *buf;
     char *buf;
     void *mem;
     void *mem;
     int count;
     int count;
     int may_fault;
     int may_fault;
{
{
  int i;
  int i;
  unsigned char ch;
  unsigned char ch;
  char *ptr = mem;
  char *ptr = mem;
 
 
  mem_may_fault = may_fault;
  mem_may_fault = may_fault;
  for (i=0;i<count;i++)
  for (i=0;i<count;i++)
    {
    {
      ch = hex(*buf++) << 4;
      ch = hex(*buf++) << 4;
      ch = ch + hex(*buf++);
      ch = ch + hex(*buf++);
      set_char (ptr++, ch);
      set_char (ptr++, ch);
      if (may_fault && mem_err)
      if (may_fault && mem_err)
        return (ptr);
        return (ptr);
    }
    }
  mem_may_fault = 0;
  mem_may_fault = 0;
  return(mem);
  return(mem);
}
}
 
 
/* This function takes the 386 exception vector and attempts to
/* This function takes the 386 exception vector and attempts to
   translate this number into a unix compatible signal value.  */
   translate this number into a unix compatible signal value.  */
 
 
int
int
computeSignal (exceptionVector)
computeSignal (exceptionVector)
     int exceptionVector;
     int exceptionVector;
{
{
  int sigval;
  int sigval;
  switch (exceptionVector)
  switch (exceptionVector)
    {
    {
    case 0 : sigval = 8; break; /* divide by zero */
    case 0 : sigval = 8; break; /* divide by zero */
    case 1 : sigval = 5; break; /* debug exception */
    case 1 : sigval = 5; break; /* debug exception */
    case 3 : sigval = 5; break; /* breakpoint */
    case 3 : sigval = 5; break; /* breakpoint */
    case 4 : sigval = 16; break; /* into instruction (overflow) */
    case 4 : sigval = 16; break; /* into instruction (overflow) */
    case 5 : sigval = 16; break; /* bound instruction */
    case 5 : sigval = 16; break; /* bound instruction */
    case 6 : sigval = 4; break; /* Invalid opcode */
    case 6 : sigval = 4; break; /* Invalid opcode */
    case 7 : sigval = 8; break; /* coprocessor not available */
    case 7 : sigval = 8; break; /* coprocessor not available */
    case 8 : sigval = 7; break; /* double fault */
    case 8 : sigval = 7; break; /* double fault */
    case 9 : sigval = 11; break; /* coprocessor segment overrun */
    case 9 : sigval = 11; break; /* coprocessor segment overrun */
    case 10 : sigval = 11; break; /* Invalid TSS */
    case 10 : sigval = 11; break; /* Invalid TSS */
    case 11 : sigval = 11; break; /* Segment not present */
    case 11 : sigval = 11; break; /* Segment not present */
    case 12 : sigval = 11; break; /* stack exception */
    case 12 : sigval = 11; break; /* stack exception */
    case 13 : sigval = 11; break; /* general protection */
    case 13 : sigval = 11; break; /* general protection */
    case 14 : sigval = 11; break; /* page fault */
    case 14 : sigval = 11; break; /* page fault */
    case 16 : sigval = 7; break; /* coprocessor error */
    case 16 : sigval = 7; break; /* coprocessor error */
    default:
    default:
      sigval = 7;               /* "software generated"*/
      sigval = 7;               /* "software generated"*/
    }
    }
  return (sigval);
  return (sigval);
}
}
 
 
/**********************************************/
/**********************************************/
/* WHILE WE FIND NICE HEX CHARS, BUILD AN INT */
/* WHILE WE FIND NICE HEX CHARS, BUILD AN INT */
/* RETURN NUMBER OF CHARS PROCESSED           */
/* RETURN NUMBER OF CHARS PROCESSED           */
/**********************************************/
/**********************************************/
static int
static int
hexToInt(ptr, intValue)
hexToInt(ptr, intValue)
     char **ptr;
     char **ptr;
     int *intValue;
     int *intValue;
{
{
  int numChars = 0;
  int numChars = 0;
  int hexValue;
  int hexValue;
 
 
  *intValue = 0;
  *intValue = 0;
 
 
  while (**ptr)
  while (**ptr)
    {
    {
      hexValue = hex(**ptr);
      hexValue = hex(**ptr);
      if (hexValue >=0)
      if (hexValue >=0)
        {
        {
          *intValue = (*intValue <<4) | hexValue;
          *intValue = (*intValue <<4) | hexValue;
          numChars ++;
          numChars ++;
        }
        }
      else
      else
        break;
        break;
 
 
      (*ptr)++;
      (*ptr)++;
    }
    }
 
 
  return (numChars);
  return (numChars);
}
}
 
 
/* This function does all command processing for interfacing to gdb.
/* This function does all command processing for interfacing to gdb.
   It is called whenever an exception occurs in the module being
   It is called whenever an exception occurs in the module being
   debugged.  */
   debugged.  */
 
 
static LONG
static LONG
handle_exception (frame)
handle_exception (frame)
     struct StackFrame *frame;
     struct StackFrame *frame;
{
{
  int addr, length;
  int addr, length;
  char *ptr;
  char *ptr;
  static struct DBG_LoadDefinitionStructure *ldinfo = 0;
  static struct DBG_LoadDefinitionStructure *ldinfo = 0;
  static unsigned char first_insn[BREAKPOINT_SIZE]; /* The first instruction in the program.  */
  static unsigned char first_insn[BREAKPOINT_SIZE]; /* The first instruction in the program.  */
 
 
#if 0
#if 0
  /* According to some documentation from Novell, the bell sometimes
  /* According to some documentation from Novell, the bell sometimes
     may be ringing at this point.  This can be stopped on Netware 4
     may be ringing at this point.  This can be stopped on Netware 4
     systems by calling the undocumented StopBell() function. */
     systems by calling the undocumented StopBell() function. */
 
 
  StopBell ();
  StopBell ();
#endif
#endif
 
 
  if (remote_debug)
  if (remote_debug)
    {
    {
      ConsolePrintf ("vector=%d: %s, pc=%08x, thread=%08x\r\n",
      ConsolePrintf ("vector=%d: %s, pc=%08x, thread=%08x\r\n",
                     frame->ExceptionNumber,
                     frame->ExceptionNumber,
                     frame->ExceptionDescription,
                     frame->ExceptionDescription,
                     frame->ExceptionPC,
                     frame->ExceptionPC,
                     GetThreadID ());
                     GetThreadID ());
    }
    }
 
 
  switch (frame->ExceptionNumber)
  switch (frame->ExceptionNumber)
    {
    {
    case START_NLM_EVENT:
    case START_NLM_EVENT:
      /* If the NLM just started, we record the module load information
      /* If the NLM just started, we record the module load information
         and the thread ID, and set a breakpoint at the first instruction
         and the thread ID, and set a breakpoint at the first instruction
         in the program.  */
         in the program.  */
 
 
      ldinfo = ((struct DBG_LoadDefinitionStructure *)
      ldinfo = ((struct DBG_LoadDefinitionStructure *)
                frame->ExceptionErrorCode);
                frame->ExceptionErrorCode);
      memcpy (first_insn, ldinfo->LDInitializationProcedure,
      memcpy (first_insn, ldinfo->LDInitializationProcedure,
              BREAKPOINT_SIZE);
              BREAKPOINT_SIZE);
      memcpy (ldinfo->LDInitializationProcedure, breakpoint_insn,
      memcpy (ldinfo->LDInitializationProcedure, breakpoint_insn,
              BREAKPOINT_SIZE);
              BREAKPOINT_SIZE);
      flush_i_cache ();
      flush_i_cache ();
      return RETURN_TO_PROGRAM;
      return RETURN_TO_PROGRAM;
 
 
    case ENTER_DEBUGGER_EVENT:
    case ENTER_DEBUGGER_EVENT:
    case KEYBOARD_BREAK_EVENT:
    case KEYBOARD_BREAK_EVENT:
      /* Pass some events on to the next debugger, in case it will handle
      /* Pass some events on to the next debugger, in case it will handle
         them.  */
         them.  */
      return RETURN_TO_NEXT_DEBUGGER;
      return RETURN_TO_NEXT_DEBUGGER;
 
 
    case 3:                     /* Breakpoint */
    case 3:                     /* Breakpoint */
      /* After we've reached the initial breakpoint, reset it.  */
      /* After we've reached the initial breakpoint, reset it.  */
      if (frame->ExceptionPC - DECR_PC_AFTER_BREAK == (LONG) ldinfo->LDInitializationProcedure
      if (frame->ExceptionPC - DECR_PC_AFTER_BREAK == (LONG) ldinfo->LDInitializationProcedure
          && memcmp (ldinfo->LDInitializationProcedure, breakpoint_insn,
          && memcmp (ldinfo->LDInitializationProcedure, breakpoint_insn,
                     BREAKPOINT_SIZE) == 0)
                     BREAKPOINT_SIZE) == 0)
        {
        {
          memcpy (ldinfo->LDInitializationProcedure, first_insn,
          memcpy (ldinfo->LDInitializationProcedure, first_insn,
                  BREAKPOINT_SIZE);
                  BREAKPOINT_SIZE);
          frame->ExceptionPC -= DECR_PC_AFTER_BREAK;
          frame->ExceptionPC -= DECR_PC_AFTER_BREAK;
          flush_i_cache ();
          flush_i_cache ();
        }
        }
      /* Normal breakpoints end up here */
      /* Normal breakpoints end up here */
      do_status (remcomOutBuffer, frame);
      do_status (remcomOutBuffer, frame);
      break;
      break;
 
 
    default:
    default:
      /* At the moment, we don't care about most of the unusual NetWare
      /* At the moment, we don't care about most of the unusual NetWare
         exceptions.  */
         exceptions.  */
      if (frame->ExceptionNumber > 31)
      if (frame->ExceptionNumber > 31)
        return RETURN_TO_PROGRAM;
        return RETURN_TO_PROGRAM;
 
 
      /* Most machine level exceptions end up here */
      /* Most machine level exceptions end up here */
      do_status (remcomOutBuffer, frame);
      do_status (remcomOutBuffer, frame);
      break;
      break;
 
 
    case 11:                    /* Segment not present */
    case 11:                    /* Segment not present */
    case 13:                    /* General protection */
    case 13:                    /* General protection */
    case 14:                    /* Page fault */
    case 14:                    /* Page fault */
      /* If we get a GP fault, and mem_may_fault is set, and the
      /* If we get a GP fault, and mem_may_fault is set, and the
         instruction pointer is near set_char or get_char, then we caused
         instruction pointer is near set_char or get_char, then we caused
         the fault ourselves accessing an illegal memory location.  */
         the fault ourselves accessing an illegal memory location.  */
      if (mem_may_fault
      if (mem_may_fault
          && ((frame->ExceptionPC >= (long) &set_char
          && ((frame->ExceptionPC >= (long) &set_char
               && frame->ExceptionPC < (long) &set_char + 50)
               && frame->ExceptionPC < (long) &set_char + 50)
              || (frame->ExceptionPC >= (long) &get_char
              || (frame->ExceptionPC >= (long) &get_char
                  && frame->ExceptionPC < (long) &get_char + 50)))
                  && frame->ExceptionPC < (long) &get_char + 50)))
        {
        {
          mem_err = 1;
          mem_err = 1;
          /* Point the instruction pointer at an assembly language stub
          /* Point the instruction pointer at an assembly language stub
             which just returns from the function.  */
             which just returns from the function.  */
 
 
          frame->ExceptionPC += 4; /* Skip the load or store */
          frame->ExceptionPC += 4; /* Skip the load or store */
 
 
          /* Keep going.  This will act as though it returned from
          /* Keep going.  This will act as though it returned from
             set_char or get_char.  The calling routine will check
             set_char or get_char.  The calling routine will check
             mem_err, and do the right thing.  */
             mem_err, and do the right thing.  */
          return RETURN_TO_PROGRAM;
          return RETURN_TO_PROGRAM;
        }
        }
      /* Random mem fault, report it */
      /* Random mem fault, report it */
      do_status (remcomOutBuffer, frame);
      do_status (remcomOutBuffer, frame);
      break;
      break;
 
 
    case TERMINATE_NLM_EVENT:
    case TERMINATE_NLM_EVENT:
      /* There is no way to get the exit status.  */
      /* There is no way to get the exit status.  */
      sprintf (remcomOutBuffer, "W%02x", 0);
      sprintf (remcomOutBuffer, "W%02x", 0);
      break;                    /* We generate our own status */
      break;                    /* We generate our own status */
    }
    }
 
 
  /* FIXME: How do we know that this exception has anything to do with
  /* FIXME: How do we know that this exception has anything to do with
     the program we are debugging?  We can check whether the PC is in
     the program we are debugging?  We can check whether the PC is in
     the range of the module we are debugging, but that doesn't help
     the range of the module we are debugging, but that doesn't help
     much since an error could occur in a library routine.  */
     much since an error could occur in a library routine.  */
 
 
  clear_step_traps (frame);
  clear_step_traps (frame);
 
 
  if (! putpacket(remcomOutBuffer))
  if (! putpacket(remcomOutBuffer))
    return RETURN_TO_NEXT_DEBUGGER;
    return RETURN_TO_NEXT_DEBUGGER;
 
 
  if (frame->ExceptionNumber == TERMINATE_NLM_EVENT)
  if (frame->ExceptionNumber == TERMINATE_NLM_EVENT)
    {
    {
      ResumeThread (mainthread);
      ResumeThread (mainthread);
      return RETURN_TO_PROGRAM;
      return RETURN_TO_PROGRAM;
    }
    }
 
 
  while (1)
  while (1)
    {
    {
      error = 0;
      error = 0;
      remcomOutBuffer[0] = 0;
      remcomOutBuffer[0] = 0;
      if (! getpacket (remcomInBuffer))
      if (! getpacket (remcomInBuffer))
        return RETURN_TO_NEXT_DEBUGGER;
        return RETURN_TO_NEXT_DEBUGGER;
      switch (remcomInBuffer[0])
      switch (remcomInBuffer[0])
        {
        {
        case '?':
        case '?':
          do_status (remcomOutBuffer, frame);
          do_status (remcomOutBuffer, frame);
          break;
          break;
        case 'd':
        case 'd':
          remote_debug = !(remote_debug); /* toggle debug flag */
          remote_debug = !(remote_debug); /* toggle debug flag */
          break;
          break;
        case 'g':
        case 'g':
          /* return the value of the CPU registers */
          /* return the value of the CPU registers */
          frame_to_registers (frame, remcomOutBuffer);
          frame_to_registers (frame, remcomOutBuffer);
          break;
          break;
        case 'G':
        case 'G':
          /* set the value of the CPU registers - return OK */
          /* set the value of the CPU registers - return OK */
          registers_to_frame (&remcomInBuffer[1], frame);
          registers_to_frame (&remcomInBuffer[1], frame);
          strcpy(remcomOutBuffer,"OK");
          strcpy(remcomOutBuffer,"OK");
          break;
          break;
 
 
        case 'm':
        case 'm':
          /* mAA..AA,LLLL  Read LLLL bytes at address AA..AA */
          /* mAA..AA,LLLL  Read LLLL bytes at address AA..AA */
          /* TRY TO READ %x,%x.  IF SUCCEED, SET PTR = 0 */
          /* TRY TO READ %x,%x.  IF SUCCEED, SET PTR = 0 */
          ptr = &remcomInBuffer[1];
          ptr = &remcomInBuffer[1];
          if (hexToInt(&ptr,&addr))
          if (hexToInt(&ptr,&addr))
            if (*(ptr++) == ',')
            if (*(ptr++) == ',')
              if (hexToInt(&ptr,&length))
              if (hexToInt(&ptr,&length))
                {
                {
                  ptr = 0;
                  ptr = 0;
                  mem_err = 0;
                  mem_err = 0;
                  mem2hex((char*) addr, remcomOutBuffer, length, 1);
                  mem2hex((char*) addr, remcomOutBuffer, length, 1);
                  if (mem_err)
                  if (mem_err)
                    {
                    {
                      strcpy (remcomOutBuffer, "E03");
                      strcpy (remcomOutBuffer, "E03");
                      debug_error ("memory fault");
                      debug_error ("memory fault");
                    }
                    }
                }
                }
 
 
          if (ptr)
          if (ptr)
            {
            {
              strcpy(remcomOutBuffer,"E01");
              strcpy(remcomOutBuffer,"E01");
              debug_error("malformed read memory command: %s",remcomInBuffer);
              debug_error("malformed read memory command: %s",remcomInBuffer);
            }
            }
          break;
          break;
 
 
        case 'M':
        case 'M':
          /* MAA..AA,LLLL: Write LLLL bytes at address AA.AA return OK */
          /* MAA..AA,LLLL: Write LLLL bytes at address AA.AA return OK */
          /* TRY TO READ '%x,%x:'.  IF SUCCEED, SET PTR = 0 */
          /* TRY TO READ '%x,%x:'.  IF SUCCEED, SET PTR = 0 */
          ptr = &remcomInBuffer[1];
          ptr = &remcomInBuffer[1];
          if (hexToInt(&ptr,&addr))
          if (hexToInt(&ptr,&addr))
            if (*(ptr++) == ',')
            if (*(ptr++) == ',')
              if (hexToInt(&ptr,&length))
              if (hexToInt(&ptr,&length))
                if (*(ptr++) == ':')
                if (*(ptr++) == ':')
                  {
                  {
                    mem_err = 0;
                    mem_err = 0;
                    hex2mem(ptr, (char*) addr, length, 1);
                    hex2mem(ptr, (char*) addr, length, 1);
 
 
                    if (mem_err)
                    if (mem_err)
                      {
                      {
                        strcpy (remcomOutBuffer, "E03");
                        strcpy (remcomOutBuffer, "E03");
                        debug_error ("memory fault");
                        debug_error ("memory fault");
                      }
                      }
                    else
                    else
                      {
                      {
                        strcpy(remcomOutBuffer,"OK");
                        strcpy(remcomOutBuffer,"OK");
                      }
                      }
 
 
                    ptr = 0;
                    ptr = 0;
                  }
                  }
          if (ptr)
          if (ptr)
            {
            {
              strcpy(remcomOutBuffer,"E02");
              strcpy(remcomOutBuffer,"E02");
              debug_error("malformed write memory command: %s",remcomInBuffer);
              debug_error("malformed write memory command: %s",remcomInBuffer);
            }
            }
          break;
          break;
 
 
        case 'c':
        case 'c':
        case 's':
        case 's':
          /* cAA..AA    Continue at address AA..AA(optional) */
          /* cAA..AA    Continue at address AA..AA(optional) */
          /* sAA..AA   Step one instruction from AA..AA(optional) */
          /* sAA..AA   Step one instruction from AA..AA(optional) */
          /* try to read optional parameter, pc unchanged if no parm */
          /* try to read optional parameter, pc unchanged if no parm */
          ptr = &remcomInBuffer[1];
          ptr = &remcomInBuffer[1];
          if (hexToInt(&ptr,&addr))
          if (hexToInt(&ptr,&addr))
            {
            {
/*            registers[PC_REGNUM].lo = addr;*/
/*            registers[PC_REGNUM].lo = addr;*/
              fprintf (stderr, "Setting PC to 0x%x\n", addr);
              fprintf (stderr, "Setting PC to 0x%x\n", addr);
              while (1);
              while (1);
            }
            }
 
 
          if (remcomInBuffer[0] == 's')
          if (remcomInBuffer[0] == 's')
            set_step_traps (frame);
            set_step_traps (frame);
 
 
          flush_i_cache ();
          flush_i_cache ();
          return RETURN_TO_PROGRAM;
          return RETURN_TO_PROGRAM;
 
 
        case 'k':
        case 'k':
          /* kill the program */
          /* kill the program */
          KillMe (ldinfo);
          KillMe (ldinfo);
          ResumeThread (mainthread);
          ResumeThread (mainthread);
          return RETURN_TO_PROGRAM;
          return RETURN_TO_PROGRAM;
 
 
        case 'q':               /* Query message */
        case 'q':               /* Query message */
          if (strcmp (&remcomInBuffer[1], "Offsets") == 0)
          if (strcmp (&remcomInBuffer[1], "Offsets") == 0)
            {
            {
              sprintf (remcomOutBuffer, "Text=%x;Data=%x;Bss=%x",
              sprintf (remcomOutBuffer, "Text=%x;Data=%x;Bss=%x",
                       ldinfo->LDCodeImageOffset,
                       ldinfo->LDCodeImageOffset,
                       ldinfo->LDDataImageOffset,
                       ldinfo->LDDataImageOffset,
                       ldinfo->LDDataImageOffset + ldinfo->LDDataImageLength);
                       ldinfo->LDDataImageOffset + ldinfo->LDDataImageLength);
            }
            }
          else
          else
            sprintf (remcomOutBuffer, "E04, Unknown query %s", &remcomInBuffer[1]);
            sprintf (remcomOutBuffer, "E04, Unknown query %s", &remcomInBuffer[1]);
          break;
          break;
        }
        }
 
 
      /* reply to the request */
      /* reply to the request */
      if (! putpacket(remcomOutBuffer))
      if (! putpacket(remcomOutBuffer))
        return RETURN_TO_NEXT_DEBUGGER;
        return RETURN_TO_NEXT_DEBUGGER;
    }
    }
}
}
 
 
char *progname;
char *progname;
 
 
struct bitRate {
struct bitRate {
  BYTE bitRate;
  BYTE bitRate;
  const char *bitRateString;
  const char *bitRateString;
};
};
 
 
struct bitRate bitRateTable[] =
struct bitRate bitRateTable[] =
{
{
  { AIO_BAUD_50    ,      "50" },
  { AIO_BAUD_50    ,      "50" },
  { AIO_BAUD_75    ,      "75" },
  { AIO_BAUD_75    ,      "75" },
  { AIO_BAUD_110   ,     "110" },
  { AIO_BAUD_110   ,     "110" },
  { AIO_BAUD_134p5 ,   "134.5" },
  { AIO_BAUD_134p5 ,   "134.5" },
  { AIO_BAUD_150   ,     "150" },
  { AIO_BAUD_150   ,     "150" },
  { AIO_BAUD_300   ,     "300" },
  { AIO_BAUD_300   ,     "300" },
  { AIO_BAUD_600   ,     "600" },
  { AIO_BAUD_600   ,     "600" },
  { AIO_BAUD_1200  ,    "1200" },
  { AIO_BAUD_1200  ,    "1200" },
  { AIO_BAUD_1800  ,    "1800" },
  { AIO_BAUD_1800  ,    "1800" },
  { AIO_BAUD_2000  ,    "2000" },
  { AIO_BAUD_2000  ,    "2000" },
  { AIO_BAUD_2400  ,    "2400" },
  { AIO_BAUD_2400  ,    "2400" },
  { AIO_BAUD_3600  ,    "3600" },
  { AIO_BAUD_3600  ,    "3600" },
  { AIO_BAUD_4800  ,    "4800" },
  { AIO_BAUD_4800  ,    "4800" },
  { AIO_BAUD_7200  ,    "7200" },
  { AIO_BAUD_7200  ,    "7200" },
  { AIO_BAUD_9600  ,    "9600" },
  { AIO_BAUD_9600  ,    "9600" },
  { AIO_BAUD_19200 ,   "19200" },
  { AIO_BAUD_19200 ,   "19200" },
  { AIO_BAUD_38400 ,   "38400" },
  { AIO_BAUD_38400 ,   "38400" },
  { AIO_BAUD_57600 ,   "57600" },
  { AIO_BAUD_57600 ,   "57600" },
  { AIO_BAUD_115200,  "115200" },
  { AIO_BAUD_115200,  "115200" },
  { -1, NULL }
  { -1, NULL }
};
};
 
 
char dataBitsTable[] = "5678";
char dataBitsTable[] = "5678";
 
 
char *stopBitsTable[] = { "1", "1.5", "2" };
char *stopBitsTable[] = { "1", "1.5", "2" };
 
 
char parity[] = "NOEMS";
char parity[] = "NOEMS";
 
 
/* Start up.  The main thread opens the named serial I/O port, loads
/* Start up.  The main thread opens the named serial I/O port, loads
   the named NLM module and then goes to sleep.  The serial I/O port
   the named NLM module and then goes to sleep.  The serial I/O port
   is named as a board number and a port number.  It would be more DOS
   is named as a board number and a port number.  It would be more DOS
   like to provide a menu of available serial ports, but I don't want
   like to provide a menu of available serial ports, but I don't want
   to have to figure out how to do that.  */
   to have to figure out how to do that.  */
 
 
int
int
main (argc, argv)
main (argc, argv)
     int argc;
     int argc;
     char **argv;
     char **argv;
{
{
  int hardware, board, port;
  int hardware, board, port;
  BYTE bitRate;
  BYTE bitRate;
  BYTE dataBits;
  BYTE dataBits;
  BYTE stopBits;
  BYTE stopBits;
  BYTE parityMode;
  BYTE parityMode;
  LONG err;
  LONG err;
  struct debuggerStructure s;
  struct debuggerStructure s;
  int cmdindx;
  int cmdindx;
  char *cmdlin;
  char *cmdlin;
  int i;
  int i;
 
 
  /* set progname */
  /* set progname */
  progname = "gdbserve";
  progname = "gdbserve";
 
 
  /* set default serial line */
  /* set default serial line */
  hardware = -1;
  hardware = -1;
  board = 0;
  board = 0;
  port = 0;
  port = 0;
 
 
  /* set default serial line characteristics */
  /* set default serial line characteristics */
  bitRate  = AIO_BAUD_9600;
  bitRate  = AIO_BAUD_9600;
  dataBits = AIO_DATA_BITS_8;
  dataBits = AIO_DATA_BITS_8;
  stopBits = AIO_STOP_BITS_1;
  stopBits = AIO_STOP_BITS_1;
  parityMode = AIO_PARITY_NONE;
  parityMode = AIO_PARITY_NONE;
 
 
  cmdindx = 0;
  cmdindx = 0;
  for (argc--, argv++; *argv; argc--, argv++)
  for (argc--, argv++; *argv; argc--, argv++)
    {
    {
      char *bp;
      char *bp;
      char *ep;
      char *ep;
 
 
      if (strnicmp(*argv, "BAUD=", 5) == 0)
      if (strnicmp(*argv, "BAUD=", 5) == 0)
        {
        {
          struct bitRate *brp;
          struct bitRate *brp;
 
 
          bp = *argv + 5;
          bp = *argv + 5;
          for (brp = bitRateTable; brp->bitRate != (BYTE) -1; brp++)
          for (brp = bitRateTable; brp->bitRate != (BYTE) -1; brp++)
            {
            {
              if (strcmp(brp->bitRateString, bp) == 0)
              if (strcmp(brp->bitRateString, bp) == 0)
                {
                {
                  bitRate = brp->bitRate;
                  bitRate = brp->bitRate;
                  break;
                  break;
                }
                }
            }
            }
 
 
          if (brp->bitRateString == NULL)
          if (brp->bitRateString == NULL)
            {
            {
              fprintf(stderr, "%s: %s: unknown or unsupported bit rate",
              fprintf(stderr, "%s: %s: unknown or unsupported bit rate",
                      progname, bp);
                      progname, bp);
              exit (1);
              exit (1);
            }
            }
        }
        }
      else if (strnicmp(*argv, "BOARD=", 6) == 0)
      else if (strnicmp(*argv, "BOARD=", 6) == 0)
        {
        {
          bp = *argv + 6;
          bp = *argv + 6;
          board = strtol (bp, &ep, 0);
          board = strtol (bp, &ep, 0);
          if (ep == bp || *ep != '\0')
          if (ep == bp || *ep != '\0')
            {
            {
              fprintf (stderr, "%s: %s: expected integer argument\n",
              fprintf (stderr, "%s: %s: expected integer argument\n",
                       progname, bp);
                       progname, bp);
              exit(1);
              exit(1);
            }
            }
        }
        }
#if 1                           /* FIXME: this option has been depricated */
#if 1                           /* FIXME: this option has been depricated */
      else if (strnicmp(*argv, "NODE=", 5) == 0)
      else if (strnicmp(*argv, "NODE=", 5) == 0)
        {
        {
          bp = *argv + 5;
          bp = *argv + 5;
          board = strtol (bp, &ep, 0);
          board = strtol (bp, &ep, 0);
          if (ep == bp || *ep != '\0')
          if (ep == bp || *ep != '\0')
            {
            {
              fprintf (stderr, "%s: %s: expected integer argument\n",
              fprintf (stderr, "%s: %s: expected integer argument\n",
                       progname, bp);
                       progname, bp);
              exit(1);
              exit(1);
            }
            }
        }
        }
#endif
#endif
      else if (strnicmp(*argv, "PORT=", 5) == 0)
      else if (strnicmp(*argv, "PORT=", 5) == 0)
        {
        {
          bp = *argv + 5;
          bp = *argv + 5;
          port = strtol (bp, &ep, 0);
          port = strtol (bp, &ep, 0);
          if (ep == bp || *ep != '\0')
          if (ep == bp || *ep != '\0')
            {
            {
              fprintf (stderr, "%s: %s: expected integer argument\n",
              fprintf (stderr, "%s: %s: expected integer argument\n",
                       progname, bp);
                       progname, bp);
              exit(1);
              exit(1);
            }
            }
        }
        }
      else
      else
        {
        {
          break;
          break;
        }
        }
 
 
      cmdindx++;
      cmdindx++;
    }
    }
 
 
  if (argc == 0)
  if (argc == 0)
    {
    {
      fprintf (stderr,
      fprintf (stderr,
               "Usage: load %s [options] program [arguments]\n", progname);
               "Usage: load %s [options] program [arguments]\n", progname);
      exit (1);
      exit (1);
    }
    }
 
 
  err = AIOAcquirePort (&hardware, &board, &port, &AIOhandle);
  err = AIOAcquirePort (&hardware, &board, &port, &AIOhandle);
  if (err != AIO_SUCCESS)
  if (err != AIO_SUCCESS)
    {
    {
      switch (err)
      switch (err)
        {
        {
        case AIO_PORT_NOT_AVAILABLE:
        case AIO_PORT_NOT_AVAILABLE:
          fprintf (stderr, "Port not available\n");
          fprintf (stderr, "Port not available\n");
          break;
          break;
 
 
        case AIO_BOARD_NUMBER_INVALID:
        case AIO_BOARD_NUMBER_INVALID:
        case AIO_PORT_NUMBER_INVALID:
        case AIO_PORT_NUMBER_INVALID:
          fprintf (stderr, "No such port\n");
          fprintf (stderr, "No such port\n");
          break;
          break;
 
 
        default:
        default:
          fprintf (stderr, "Could not open port: %d\n", err);
          fprintf (stderr, "Could not open port: %d\n", err);
          break;
          break;
        }
        }
 
 
      exit (1);
      exit (1);
    }
    }
 
 
  err = AIOConfigurePort (AIOhandle, bitRate, dataBits, stopBits, parityMode,
  err = AIOConfigurePort (AIOhandle, bitRate, dataBits, stopBits, parityMode,
                          AIO_HARDWARE_FLOW_CONTROL_OFF);
                          AIO_HARDWARE_FLOW_CONTROL_OFF);
 
 
  if (err == AIO_QUALIFIED_SUCCESS)
  if (err == AIO_QUALIFIED_SUCCESS)
    {
    {
      AIOPORTCONFIG portConfig;
      AIOPORTCONFIG portConfig;
 
 
      fprintf (stderr, "Port configuration changed!\n");
      fprintf (stderr, "Port configuration changed!\n");
 
 
      portConfig.returnLength = sizeof(portConfig);
      portConfig.returnLength = sizeof(portConfig);
      AIOGetPortConfiguration (AIOhandle, &portConfig, NULL);
      AIOGetPortConfiguration (AIOhandle, &portConfig, NULL);
 
 
      fprintf (stderr,
      fprintf (stderr,
               "  Bit Rate: %s, Data Bits: %c, Stop Bits: %s, Parity: %c,\
               "  Bit Rate: %s, Data Bits: %c, Stop Bits: %s, Parity: %c,\
 Flow:%s\n",
 Flow:%s\n",
               bitRateTable[portConfig.bitRate].bitRateString,
               bitRateTable[portConfig.bitRate].bitRateString,
               dataBitsTable[portConfig.dataBits],
               dataBitsTable[portConfig.dataBits],
               stopBitsTable[portConfig.stopBits],
               stopBitsTable[portConfig.stopBits],
               parity[portConfig.parityMode],
               parity[portConfig.parityMode],
               portConfig.flowCtrlMode ? "ON" : "OFF");
               portConfig.flowCtrlMode ? "ON" : "OFF");
    }
    }
  else if (err != AIO_SUCCESS)
  else if (err != AIO_SUCCESS)
    {
    {
      fprintf (stderr, "Could not configure port: %d\n", err);
      fprintf (stderr, "Could not configure port: %d\n", err);
      AIOReleasePort (AIOhandle);
      AIOReleasePort (AIOhandle);
      exit (1);
      exit (1);
    }
    }
 
 
  if (AIOSetExternalControl(AIOhandle, AIO_EXTERNAL_CONTROL,
  if (AIOSetExternalControl(AIOhandle, AIO_EXTERNAL_CONTROL,
                            (AIO_EXTCTRL_DTR | AIO_EXTCTRL_RTS))
                            (AIO_EXTCTRL_DTR | AIO_EXTCTRL_RTS))
      != AIO_SUCCESS)
      != AIO_SUCCESS)
    {
    {
      LONG extStatus, chgdExtStatus;
      LONG extStatus, chgdExtStatus;
 
 
      fprintf (stderr, "Could not set desired port controls!\n");
      fprintf (stderr, "Could not set desired port controls!\n");
      AIOGetExternalStatus (AIOhandle, &extStatus, &chgdExtStatus);
      AIOGetExternalStatus (AIOhandle, &extStatus, &chgdExtStatus);
      fprintf (stderr, "Port controls now: %d, %d\n", extStatus,
      fprintf (stderr, "Port controls now: %d, %d\n", extStatus,
               chgdExtStatus);
               chgdExtStatus);
    }
    }
 
 
  /* Register ourselves as an alternate debugger.  */
  /* Register ourselves as an alternate debugger.  */
  memset (&s, 0, sizeof s);
  memset (&s, 0, sizeof s);
  s.DDSResourceTag = ((struct ResourceTagStructure *)
  s.DDSResourceTag = ((struct ResourceTagStructure *)
                      AllocateResourceTag (GetNLMHandle (),
                      AllocateResourceTag (GetNLMHandle (),
                                           (BYTE *)"gdbserver",
                                           (BYTE *)"gdbserver",
                                           DebuggerSignature));
                                           DebuggerSignature));
  if (s.DDSResourceTag == 0)
  if (s.DDSResourceTag == 0)
    {
    {
      fprintf (stderr, "AllocateResourceTag failed\n");
      fprintf (stderr, "AllocateResourceTag failed\n");
      AIOReleasePort (AIOhandle);
      AIOReleasePort (AIOhandle);
      exit (1);
      exit (1);
    }
    }
  s.DDSdebuggerEntry = handle_exception;
  s.DDSdebuggerEntry = handle_exception;
  s.DDSFlags = TSS_FRAME_BIT;
  s.DDSFlags = TSS_FRAME_BIT;
 
 
  err = RegisterDebuggerRTag (&s, AT_FIRST);
  err = RegisterDebuggerRTag (&s, AT_FIRST);
  if (err != 0)
  if (err != 0)
    {
    {
      fprintf (stderr, "RegisterDebuggerRTag failed\n");
      fprintf (stderr, "RegisterDebuggerRTag failed\n");
      AIOReleasePort (AIOhandle);
      AIOReleasePort (AIOhandle);
      exit (1);
      exit (1);
    }
    }
 
 
  /* Get the command line we were invoked with, and advance it past
  /* Get the command line we were invoked with, and advance it past
     our name and the board and port arguments.  */
     our name and the board and port arguments.  */
  cmdlin = getcmd ((char *) NULL);
  cmdlin = getcmd ((char *) NULL);
  for (i = 0; i < cmdindx; i++)
  for (i = 0; i < cmdindx; i++)
    {
    {
      while (! isspace (*cmdlin))
      while (! isspace (*cmdlin))
        ++cmdlin;
        ++cmdlin;
      while (isspace (*cmdlin))
      while (isspace (*cmdlin))
        ++cmdlin;
        ++cmdlin;
    }
    }
 
 
  /* In case GDB is started before us, ack any packets (presumably
  /* In case GDB is started before us, ack any packets (presumably
     "$?#xx") sitting there.  */
     "$?#xx") sitting there.  */
  if (! putDebugChar ('+'))
  if (! putDebugChar ('+'))
    {
    {
      fprintf (stderr, "putDebugChar failed\n");
      fprintf (stderr, "putDebugChar failed\n");
      UnRegisterDebugger (&s);
      UnRegisterDebugger (&s);
      AIOReleasePort (AIOhandle);
      AIOReleasePort (AIOhandle);
      exit (1);
      exit (1);
    }
    }
 
 
  mainthread = GetThreadID ();
  mainthread = GetThreadID ();
 
 
  if (remote_debug > 0)
  if (remote_debug > 0)
    ConsolePrintf ("About to call LoadModule with \"%s\" %08x\r\n",
    ConsolePrintf ("About to call LoadModule with \"%s\" %08x\r\n",
                   cmdlin, __GetScreenID (GetCurrentScreen()));
                   cmdlin, __GetScreenID (GetCurrentScreen()));
 
 
  /* Start up the module to be debugged.  */
  /* Start up the module to be debugged.  */
  err = LoadModule ((struct ScreenStruct *) __GetScreenID (GetCurrentScreen()),
  err = LoadModule ((struct ScreenStruct *) __GetScreenID (GetCurrentScreen()),
                    (BYTE *)cmdlin, LO_DEBUG);
                    (BYTE *)cmdlin, LO_DEBUG);
  if (err != 0)
  if (err != 0)
    {
    {
      fprintf (stderr, "LoadModule failed: %d\n", err);
      fprintf (stderr, "LoadModule failed: %d\n", err);
      UnRegisterDebugger (&s);
      UnRegisterDebugger (&s);
      AIOReleasePort (AIOhandle);
      AIOReleasePort (AIOhandle);
      exit (1);
      exit (1);
    }
    }
 
 
  /* Wait for the debugger to wake us up.  */
  /* Wait for the debugger to wake us up.  */
  if (remote_debug > 0)
  if (remote_debug > 0)
    ConsolePrintf ("Suspending main thread (%08x)\r\n", mainthread);
    ConsolePrintf ("Suspending main thread (%08x)\r\n", mainthread);
  SuspendThread (mainthread);
  SuspendThread (mainthread);
  if (remote_debug > 0)
  if (remote_debug > 0)
    ConsolePrintf ("Resuming main thread (%08x)\r\n", mainthread);
    ConsolePrintf ("Resuming main thread (%08x)\r\n", mainthread);
 
 
  /* If we are woken up, print an optional error message, deregister
  /* If we are woken up, print an optional error message, deregister
     ourselves and exit.  */
     ourselves and exit.  */
  if (error_message != NULL)
  if (error_message != NULL)
    fprintf (stderr, "%s\n", error_message);
    fprintf (stderr, "%s\n", error_message);
  UnRegisterDebugger (&s);
  UnRegisterDebugger (&s);
  AIOReleasePort (AIOhandle);
  AIOReleasePort (AIOhandle);
  exit (0);
  exit (0);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.