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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [or1ksim/] [or1ksim-0.3.0/] [debug/] [gdbcomm.c] - Diff between revs 19 and 21

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

Rev 19 Rev 21
/* gdbcomm.c -- Communication routines for gdb
/* gdbcomm.c -- Communication routines for gdb
 
 
   Copyright (C) 2001 by Marko Mlinar, markom@opencores.org
   Copyright (C) 2001 by Marko Mlinar, markom@opencores.org
   Copyright (C) 2008 Embecosm Limited
   Copyright (C) 2008 Embecosm Limited
 
 
   Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
   Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
 
 
   This file is part of Or1ksim, the OpenRISC 1000 Architectural Simulator.
   This file is part of Or1ksim, the OpenRISC 1000 Architectural Simulator.
 
 
   This program is free software; you can redistribute it and/or modify it
   This program is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by the Free
   under the terms of the GNU General Public License as published by the Free
   Software Foundation; either version 3 of the License, or (at your option)
   Software Foundation; either version 3 of the License, or (at your option)
   any later version.
   any later version.
 
 
   This program is distributed in the hope that it will be useful, but WITHOUT
   This program is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   more details.
   more details.
 
 
   You should have received a copy of the GNU General Public License along
   You should have received a copy of the GNU General Public License along
   with this program.  If not, see <http://www.gnu.org/licenses/>.  */
   with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
/* This program is commented throughout in a fashion suitable for processing
/* This program is commented throughout in a fashion suitable for processing
   with Doxygen. */
   with Doxygen. */
 
 
 
 
/* Autoconf and/or portability configuration */
/* Autoconf and/or portability configuration */
#include "config.h"
#include "config.h"
#include "port.h"
#include "port.h"
 
 
/* System includes */
/* System includes */
#include <stdlib.h>
#include <stdlib.h>
#include <unistd.h>
#include <unistd.h>
#include <stdio.h>
#include <stdio.h>
#include <sys/poll.h>
#include <sys/poll.h>
#include <sys/types.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/in.h>
#include <fcntl.h>
#include <fcntl.h>
#include <netdb.h>
#include <netdb.h>
#include <netinet/tcp.h>
#include <netinet/tcp.h>
#include <errno.h>
#include <errno.h>
 
 
/* Package includes */
/* Package includes */
#include "sim-config.h"
#include "sim-config.h"
#include "gdb.h"
#include "gdb.h"
#include "gdbcomm.h"
#include "gdbcomm.h"
#include "debug-unit.h"
#include "debug-unit.h"
#include "vapi.h"
#include "vapi.h"
 
 
 
 
/* Forward declaration of static functions */
/* Forward declaration of static functions */
static void  jtag_request ();
static void  jtag_request ();
static void  gdb_request (void);
static void  gdb_request (void);
static void  protocol_clean (int, int32_t);
static void  protocol_clean (int, int32_t);
static int   get_server_socket (const char *name, const char *proto, int port);
static int   get_server_socket (const char *name, const char *proto, int port);
static int   gdb_read (void *buf, int len);
static int   gdb_read (void *buf, int len);
static int   gdb_write (const void *buf, int len);
static int   gdb_write (const void *buf, int len);
 
 
/* Data structures for this file */
/* Data structures for this file */
static unsigned int  server_ip   = 0;
static unsigned int  server_ip   = 0;
static unsigned int  server_port = 0;
static unsigned int  server_port = 0;
static unsigned int  server_fd   = 0;
static unsigned int  server_fd   = 0;
static unsigned int  gdb_fd      = 0;
static unsigned int  gdb_fd      = 0;
static int           tcp_level   = 0;
static int           tcp_level   = 0;
 
 
/* Added by CZ 24/05/01 */
/* Added by CZ 24/05/01 */
static int
static int
get_server_socket (const char *name, const char *proto, int port)
get_server_socket (const char *name, const char *proto, int port)
{
{
  struct servent *service;
  struct servent *service;
  struct protoent *protocol;
  struct protoent *protocol;
  struct sockaddr_in sa;
  struct sockaddr_in sa;
  struct hostent *hp;
  struct hostent *hp;
  int sockfd;
  int sockfd;
  char myname[256];
  char myname[256];
  int flags;
  int flags;
  char sTemp[256];
  char sTemp[256];
  socklen_t len;
  socklen_t len;
 
 
  /* First, get the protocol number of TCP */
  /* First, get the protocol number of TCP */
  if (!(protocol = getprotobyname (proto)))
  if (!(protocol = getprotobyname (proto)))
    {
    {
      sprintf (sTemp, "Unable to load protocol \"%s\"", proto);
      sprintf (sTemp, "Unable to load protocol \"%s\"", proto);
      perror (sTemp);
      perror (sTemp);
      return 0;
      return 0;
    }
    }
  tcp_level = protocol->p_proto;        /* Save for later */
  tcp_level = protocol->p_proto;        /* Save for later */
 
 
  /* If we weren't passed a non standard port, get the port
  /* If we weren't passed a non standard port, get the port
     from the services directory. */
     from the services directory. */
  if (!port)
  if (!port)
    {
    {
      if ((service = getservbyname (name, protocol->p_name)))
      if ((service = getservbyname (name, protocol->p_name)))
        port = ntohs (service->s_port);
        port = ntohs (service->s_port);
    }
    }
 
 
  /* Create the socket using the TCP protocol */
  /* Create the socket using the TCP protocol */
  if ((sockfd = socket (PF_INET, SOCK_STREAM, protocol->p_proto)) < 0)
  if ((sockfd = socket (PF_INET, SOCK_STREAM, protocol->p_proto)) < 0)
    {
    {
      perror ("Unable to create socket");
      perror ("Unable to create socket");
      return 0;
      return 0;
    }
    }
 
 
  flags = 1;
  flags = 1;
  if (setsockopt
  if (setsockopt
      (sockfd, SOL_SOCKET, SO_REUSEADDR, (const char *) &flags,
      (sockfd, SOL_SOCKET, SO_REUSEADDR, (const char *) &flags,
       sizeof (int)) < 0)
       sizeof (int)) < 0)
    {
    {
      sprintf (sTemp, "Can not set SO_REUSEADDR option on socket %d", sockfd);
      sprintf (sTemp, "Can not set SO_REUSEADDR option on socket %d", sockfd);
      perror (sTemp);
      perror (sTemp);
      close (sockfd);
      close (sockfd);
      return 0;
      return 0;
    }
    }
 
 
  /* The server should also be non blocking. Get the current flags. */
  /* The server should also be non blocking. Get the current flags. */
  flags = fcntl (sockfd, F_GETFL, flags);
  flags = fcntl (sockfd, F_GETFL, flags);
  if (flags < 0)
  if (flags < 0)
    {
    {
      sprintf (sTemp, "Unable to get flags for socket %d", sockfd);
      sprintf (sTemp, "Unable to get flags for socket %d", sockfd);
      perror (sTemp);
      perror (sTemp);
      close (sockfd);
      close (sockfd);
      return 0;
      return 0;
    }
    }
 
 
  /* Set the nonblocking flag */
  /* Set the nonblocking flag */
  if (fcntl (sockfd, F_SETFL, flags | O_NONBLOCK) < 0)
  if (fcntl (sockfd, F_SETFL, flags | O_NONBLOCK) < 0)
    {
    {
      sprintf (sTemp, "Unable to set flags for socket %d to value 0x%08x",
      sprintf (sTemp, "Unable to set flags for socket %d to value 0x%08x",
               sockfd, flags | O_NONBLOCK);
               sockfd, flags | O_NONBLOCK);
      perror (sTemp);
      perror (sTemp);
      close (sockfd);
      close (sockfd);
      return 0;
      return 0;
    }
    }
 
 
  /* Find out what our address is */
  /* Find out what our address is */
  memset (&sa, 0, sizeof (struct sockaddr_in));
  memset (&sa, 0, sizeof (struct sockaddr_in));
  gethostname (myname, sizeof (myname));
  gethostname (myname, sizeof (myname));
  if (!(hp = gethostbyname (myname)))
  if (!(hp = gethostbyname (myname)))
    {
    {
      perror ("Unable to read hostname");
      perror ("Unable to read hostname");
      close (sockfd);
      close (sockfd);
      return 0;
      return 0;
    }
    }
 
 
  /* Bind our socket to the appropriate address */
  /* Bind our socket to the appropriate address */
  sa.sin_family = hp->h_addrtype;
  sa.sin_family = hp->h_addrtype;
  sa.sin_port = htons (port);
  sa.sin_port = htons (port);
  if (bind (sockfd, (struct sockaddr *) &sa, sizeof (struct sockaddr_in)) < 0)
  if (bind (sockfd, (struct sockaddr *) &sa, sizeof (struct sockaddr_in)) < 0)
    {
    {
      sprintf (sTemp, "Unable to bind socket %d to port %d", sockfd, port);
      sprintf (sTemp, "Unable to bind socket %d to port %d", sockfd, port);
      perror (sTemp);
      perror (sTemp);
      close (sockfd);
      close (sockfd);
      return 0;
      return 0;
    }
    }
  server_ip = sa.sin_addr.s_addr;
  server_ip = sa.sin_addr.s_addr;
  len = sizeof (struct sockaddr_in);
  len = sizeof (struct sockaddr_in);
  if (getsockname (sockfd, (struct sockaddr *) &sa, &len) < 0)
  if (getsockname (sockfd, (struct sockaddr *) &sa, &len) < 0)
    {
    {
      sprintf (sTemp, "Unable to get socket information for socket %d",
      sprintf (sTemp, "Unable to get socket information for socket %d",
               sockfd);
               sockfd);
      perror (sTemp);
      perror (sTemp);
      close (sockfd);
      close (sockfd);
      return 0;
      return 0;
    }
    }
  server_port = ntohs (sa.sin_port);
  server_port = ntohs (sa.sin_port);
 
 
  /* Set the backlog to 1 connections */
  /* Set the backlog to 1 connections */
  if (listen (sockfd, 1) < 0)
  if (listen (sockfd, 1) < 0)
    {
    {
      sprintf (sTemp, "Unable to set backlog on socket %d to %d", sockfd, 1);
      sprintf (sTemp, "Unable to set backlog on socket %d to %d", sockfd, 1);
      perror (sTemp);
      perror (sTemp);
      close (sockfd);
      close (sockfd);
      return 0;
      return 0;
    }
    }
 
 
  return sockfd;
  return sockfd;
}
}
 
 
void
void
block_jtag ()
block_jtag ()
{
{
  struct pollfd fds[2];
  struct pollfd fds[2];
  int n = 0;
  int n = 0;
 
 
  fds[n].fd = server_fd;
  fds[n].fd = server_fd;
  fds[n].events = POLLIN;
  fds[n].events = POLLIN;
  fds[n++].revents = 0;
  fds[n++].revents = 0;
  if (gdb_fd)
  if (gdb_fd)
    {
    {
      fds[n].fd = gdb_fd;
      fds[n].fd = gdb_fd;
      fds[n].events = POLLIN;
      fds[n].events = POLLIN;
      fds[n++].revents = 0;
      fds[n++].revents = 0;
    }
    }
  poll (fds, n, -1);
  poll (fds, n, -1);
}
}
 
 
void
void
handle_server_socket (enum boolean block)
handle_server_socket (enum boolean block)
{
{
  struct pollfd fds[3];
  struct pollfd fds[3];
  int n = 0;
  int n = 0;
  int timeout = block ? -1 : 0;
  int timeout = block ? -1 : 0;
  enum boolean data_on_stdin = FALSE;
  enum boolean data_on_stdin = FALSE;
  int o_serv_fd = server_fd;
  int o_serv_fd = server_fd;
 
 
  if (!o_serv_fd && !gdb_fd)
  if (!o_serv_fd && !gdb_fd)
    return;
    return;
 
 
  if (o_serv_fd)
  if (o_serv_fd)
    {
    {
      fds[n].fd = o_serv_fd;
      fds[n].fd = o_serv_fd;
      fds[n].events = POLLIN;
      fds[n].events = POLLIN;
      fds[n++].revents = 0;
      fds[n++].revents = 0;
    }
    }
  if (gdb_fd)
  if (gdb_fd)
    {
    {
      fds[n].fd = gdb_fd;
      fds[n].fd = gdb_fd;
      fds[n].events = POLLIN;
      fds[n].events = POLLIN;
      fds[n++].revents = 0;
      fds[n++].revents = 0;
    }
    }
  if (block)
  if (block)
    {
    {
      fds[n].fd = 0;
      fds[n].fd = 0;
      fds[n].events = POLLIN;
      fds[n].events = POLLIN;
      fds[n++].revents = 0;
      fds[n++].revents = 0;
    }
    }
 
 
  while (!data_on_stdin)
  while (!data_on_stdin)
    {
    {
      fds[0].revents = 0;
      fds[0].revents = 0;
      fds[1].revents = 0;
      fds[1].revents = 0;
      fds[2].revents = 0;
      fds[2].revents = 0;
      switch (poll (fds, n, timeout))
      switch (poll (fds, n, timeout))
        {
        {
        case -1:
        case -1:
          if (errno == EINTR)
          if (errno == EINTR)
            continue;
            continue;
          perror ("poll");
          perror ("poll");
          server_fd = 0;
          server_fd = 0;
          break;
          break;
        case 0:          /* Nothing interesting going on */
        case 0:          /* Nothing interesting going on */
          data_on_stdin = TRUE; /* Can only get here if nonblocking */
          data_on_stdin = TRUE; /* Can only get here if nonblocking */
          break;
          break;
        default:
        default:
          /* Make sure to handle the gdb port first! */
          /* Make sure to handle the gdb port first! */
          if ((fds[0].revents && gdb_fd && !o_serv_fd) ||
          if ((fds[0].revents && gdb_fd && !o_serv_fd) ||
              (fds[1].revents && server_fd && gdb_fd))
              (fds[1].revents && server_fd && gdb_fd))
            {
            {
              int revents = o_serv_fd ? fds[1].revents : fds[0].revents;
              int revents = o_serv_fd ? fds[1].revents : fds[0].revents;
 
 
              if (revents & POLLIN)
              if (revents & POLLIN)
                gdb_request ();
                gdb_request ();
              else              /* Error Occurred */
              else              /* Error Occurred */
                {
                {
                  fprintf (stderr,
                  fprintf (stderr,
                           "Received flags 0x%08x on gdb socket. Shutting down.\n",
                           "Received flags 0x%08x on gdb socket. Shutting down.\n",
                           revents);
                           revents);
                  close (gdb_fd);
                  close (gdb_fd);
                  gdb_fd = 0;
                  gdb_fd = 0;
                }
                }
            }
            }
          if (fds[0].revents && o_serv_fd)
          if (fds[0].revents && o_serv_fd)
            {
            {
              if (fds[0].revents & POLLIN)
              if (fds[0].revents & POLLIN)
                jtag_request ();
                jtag_request ();
              else              /* Error Occurred */
              else              /* Error Occurred */
                {
                {
                  fprintf (stderr,
                  fprintf (stderr,
                           "Received flags 0x%08x on server. Shutting down.\n",
                           "Received flags 0x%08x on server. Shutting down.\n",
                           fds[0].revents);
                           fds[0].revents);
                  close (o_serv_fd);
                  close (o_serv_fd);
                  server_fd = 0;
                  server_fd = 0;
                  server_port = 0;
                  server_port = 0;
                  server_ip = 0;
                  server_ip = 0;
                }
                }
            }
            }
          if (fds[2].revents || (fds[1].revents && !gdb_fd))
          if (fds[2].revents || (fds[1].revents && !gdb_fd))
            data_on_stdin = TRUE;
            data_on_stdin = TRUE;
          break;
          break;
        }                       /* End of switch statement */
        }                       /* End of switch statement */
    }                           /* End of while statement */
    }                           /* End of while statement */
}
}
 
 
static void
static void
jtag_request (void)
jtag_request (void)
{
{
  struct sockaddr_in sa;
  struct sockaddr_in sa;
  struct sockaddr *addr = (struct sockaddr *) &sa;
  struct sockaddr *addr = (struct sockaddr *) &sa;
  socklen_t len = sizeof (struct sockaddr_in);
  socklen_t len = sizeof (struct sockaddr_in);
  int fd = accept (server_fd, addr, &len);
  int fd = accept (server_fd, addr, &len);
  int on_off = 0;                /* Turn off Nagel's algorithm on the socket */
  int on_off = 0;                /* Turn off Nagel's algorithm on the socket */
  int flags;
  int flags;
  char sTemp[256];
  char sTemp[256];
 
 
  if (fd < 0)
  if (fd < 0)
    {
    {
      /* This is valid, because a connection could have started,
      /* This is valid, because a connection could have started,
         and then terminated due to a protocol error or user
         and then terminated due to a protocol error or user
         initiation before the accept could take place. */
         initiation before the accept could take place. */
      if (errno != EWOULDBLOCK && errno != EAGAIN)
      if (errno != EWOULDBLOCK && errno != EAGAIN)
        {
        {
          perror ("accept");
          perror ("accept");
          close (server_fd);
          close (server_fd);
          server_fd = 0;
          server_fd = 0;
          server_port = 0;
          server_port = 0;
          server_ip = 0;
          server_ip = 0;
        }
        }
      return;
      return;
    }
    }
 
 
  if (gdb_fd)
  if (gdb_fd)
    {
    {
      close (fd);
      close (fd);
      return;
      return;
    }
    }
 
 
  if ((flags = fcntl (fd, F_GETFL)) < 0) /* JPB */
  if ((flags = fcntl (fd, F_GETFL)) < 0) /* JPB */
    {
    {
      sprintf (sTemp, "Unable to get flags for gdb socket %d", fd);
      sprintf (sTemp, "Unable to get flags for gdb socket %d", fd);
      perror (sTemp);
      perror (sTemp);
      close (fd);
      close (fd);
      return;
      return;
    }
    }
 
 
  if (fcntl (fd, F_SETFL, flags | O_NONBLOCK) < 0)
  if (fcntl (fd, F_SETFL, flags | O_NONBLOCK) < 0)
    {
    {
      sprintf (sTemp, "Unable to set flags for gdb socket %d to value 0x%08x",
      sprintf (sTemp, "Unable to set flags for gdb socket %d to value 0x%08x",
               fd, flags | O_NONBLOCK);
               fd, flags | O_NONBLOCK);
      perror (sTemp);
      perror (sTemp);
      close (fd);
      close (fd);
      return;
      return;
    }
    }
 
 
  if (setsockopt (fd, tcp_level, TCP_NODELAY, &on_off, sizeof (int)) < 0)
  if (setsockopt (fd, tcp_level, TCP_NODELAY, &on_off, sizeof (int)) < 0)
    {
    {
      sprintf (sTemp,
      sprintf (sTemp,
               "Unable to disable Nagel's algorithm for socket %d.\nsetsockopt",
               "Unable to disable Nagel's algorithm for socket %d.\nsetsockopt",
               fd);
               fd);
      perror (sTemp);
      perror (sTemp);
      close (fd);
      close (fd);
      return;
      return;
    }
    }
 
 
  gdb_fd = fd;
  gdb_fd = fd;
}
}
 
 
static void
static void
gdb_request (void)
gdb_request (void)
{
{
  struct jtr_read_message          msg_read;
  struct jtr_read_message          msg_read;
  struct jtr_write_message         msg_write;
  struct jtr_write_message         msg_write;
  struct jtr_read_block_message    msg_bread;
  struct jtr_read_block_message    msg_bread;
  struct jtr_write_block_message  *msg_bwrite;
  struct jtr_write_block_message  *msg_bwrite;
  struct jtr_chain_message         msg_chain;
  struct jtr_chain_message         msg_chain;
  struct jtr_read_response         resp_read;
  struct jtr_read_response         resp_read;
  struct jtr_write_response        resp_write;
  struct jtr_write_response        resp_write;
  struct jtr_read_block_response  *resp_bread;
  struct jtr_read_block_response  *resp_bread;
  struct jtr_write_block_response  resp_bwrite;
  struct jtr_write_block_response  resp_bwrite;
  struct jtr_chain_response        resp_chain;
  struct jtr_chain_response        resp_chain;
 
 
  char *buf;
  char *buf;
  int err = 0;
  int err = 0;
  uint32_t command, length;
  uint32_t command, length;
  int len, i;
  int len, i;
 
 
  /* First, we must read the incomming command */
  /* First, we must read the incomming command */
  if (gdb_read (&command, sizeof (uint32_t)) < 0)
  if (gdb_read (&command, sizeof (uint32_t)) < 0)
    {
    {
      if (gdb_fd)
      if (gdb_fd)
        {
        {
          perror ("gdb socket - 1");
          perror ("gdb socket - 1");
          close (gdb_fd);
          close (gdb_fd);
          gdb_fd = 0;
          gdb_fd = 0;
        }
        }
      return;
      return;
    }
    }
  if (gdb_read (&length, sizeof (uint32_t)) < 0)
  if (gdb_read (&length, sizeof (uint32_t)) < 0)
    {
    {
      if (gdb_fd)
      if (gdb_fd)
        {
        {
          perror ("gdb socket - 2");
          perror ("gdb socket - 2");
          close (gdb_fd);
          close (gdb_fd);
          gdb_fd = 0;
          gdb_fd = 0;
        }
        }
      return;
      return;
    }
    }
  length = ntohl (length);
  length = ntohl (length);
 
 
  /* Now, verify the protocol and implement the command */
  /* Now, verify the protocol and implement the command */
  switch (ntohl (command))
  switch (ntohl (command))
    {
    {
    case OR1K_JTAG_COMMAND_WRITE:
    case OR1K_JTAG_COMMAND_WRITE:
      if (length != sizeof (msg_write) - 8)
      if (length != sizeof (msg_write) - 8)
        {
        {
          protocol_clean (length, JTAG_PROXY_PROTOCOL_ERROR);
          protocol_clean (length, JTAG_PROXY_PROTOCOL_ERROR);
          return;
          return;
        }
        }
      buf = (char *) &msg_write;
      buf = (char *) &msg_write;
      if (gdb_read (&buf[8], length) < 0)
      if (gdb_read (&buf[8], length) < 0)
        {
        {
          if (gdb_fd)
          if (gdb_fd)
            {
            {
              perror ("gdb socket - 3");
              perror ("gdb socket - 3");
              close (gdb_fd);
              close (gdb_fd);
              gdb_fd = 0;
              gdb_fd = 0;
            }
            }
          return;
          return;
        }
        }
      msg_write.address = ntohl (msg_write.address);
      msg_write.address = ntohl (msg_write.address);
      msg_write.data_h = ntohl (msg_write.data_h);
      msg_write.data_h = ntohl (msg_write.data_h);
      msg_write.data_l = ntohl (msg_write.data_l);
      msg_write.data_l = ntohl (msg_write.data_l);
      err = debug_set_register (msg_write.address, msg_write.data_l);
      err = debug_set_register (msg_write.address, msg_write.data_l);
      resp_write.status = htonl (err);
      resp_write.status = htonl (err);
      if (gdb_write (&resp_write, sizeof (resp_write)) < 0)
      if (gdb_write (&resp_write, sizeof (resp_write)) < 0)
        {
        {
          if (gdb_fd)
          if (gdb_fd)
            {
            {
              perror ("gdb socket - 4");
              perror ("gdb socket - 4");
              close (gdb_fd);
              close (gdb_fd);
              gdb_fd = 0;
              gdb_fd = 0;
            }
            }
          return;
          return;
        }
        }
      break;
      break;
    case OR1K_JTAG_COMMAND_READ:
    case OR1K_JTAG_COMMAND_READ:
      if (length != sizeof (msg_read) - 8)
      if (length != sizeof (msg_read) - 8)
        {
        {
          protocol_clean (length, JTAG_PROXY_PROTOCOL_ERROR);
          protocol_clean (length, JTAG_PROXY_PROTOCOL_ERROR);
          return;
          return;
        }
        }
      buf = (char *) &msg_read;
      buf = (char *) &msg_read;
      if (gdb_read (&buf[8], length) < 0)
      if (gdb_read (&buf[8], length) < 0)
        {
        {
          if (gdb_fd)
          if (gdb_fd)
            {
            {
              perror ("gdb socket - 5");
              perror ("gdb socket - 5");
              close (gdb_fd);
              close (gdb_fd);
              gdb_fd = 0;
              gdb_fd = 0;
            }
            }
          return;
          return;
        }
        }
      msg_read.address = ntohl (msg_read.address);
      msg_read.address = ntohl (msg_read.address);
      err = debug_get_register (msg_read.address, &resp_read.data_l);
      err = debug_get_register (msg_read.address, &resp_read.data_l);
      resp_read.status = htonl (err);
      resp_read.status = htonl (err);
      resp_read.data_h = 0;
      resp_read.data_h = 0;
      resp_read.data_l = htonl (resp_read.data_l);
      resp_read.data_l = htonl (resp_read.data_l);
      if (gdb_write (&resp_read, sizeof (resp_read)) < 0)
      if (gdb_write (&resp_read, sizeof (resp_read)) < 0)
        {
        {
          if (gdb_fd)
          if (gdb_fd)
            {
            {
              perror ("gdb socket - 6");
              perror ("gdb socket - 6");
              close (gdb_fd);
              close (gdb_fd);
              gdb_fd = 0;
              gdb_fd = 0;
            }
            }
          return;
          return;
        }
        }
      break;
      break;
    case OR1K_JTAG_COMMAND_WRITE_BLOCK:
    case OR1K_JTAG_COMMAND_WRITE_BLOCK:
      if (length < sizeof (struct jtr_write_block_message) - 8)
      if (length < sizeof (struct jtr_write_block_message) - 8)
        {
        {
          protocol_clean (length, JTAG_PROXY_PROTOCOL_ERROR);
          protocol_clean (length, JTAG_PROXY_PROTOCOL_ERROR);
          return;
          return;
        }
        }
      if (!(buf = (char *) malloc (8 + length)))
      if (!(buf = (char *) malloc (8 + length)))
        {
        {
          protocol_clean (length, JTAG_PROXY_OUT_OF_MEMORY);
          protocol_clean (length, JTAG_PROXY_OUT_OF_MEMORY);
          return;
          return;
        }
        }
      msg_bwrite = (struct jtr_write_block_message *) buf;
      msg_bwrite = (struct jtr_write_block_message *) buf;
      if (gdb_read (&buf[8], length) < 0)
      if (gdb_read (&buf[8], length) < 0)
        {
        {
          if (gdb_fd)
          if (gdb_fd)
            {
            {
              perror ("gdb socket - 5");
              perror ("gdb socket - 5");
              close (gdb_fd);
              close (gdb_fd);
              gdb_fd = 0;
              gdb_fd = 0;
            }
            }
          free (buf);
          free (buf);
          return;
          return;
        }
        }
      msg_bwrite->address = ntohl (msg_bwrite->address);
      msg_bwrite->address = ntohl (msg_bwrite->address);
      msg_bwrite->num_regs = ntohl (msg_bwrite->num_regs);
      msg_bwrite->num_regs = ntohl (msg_bwrite->num_regs);
      for (i = 0; i < msg_bwrite->num_regs; i++)
      for (i = 0; i < msg_bwrite->num_regs; i++)
        {
        {
          int t_err = 0;
          int t_err = 0;
 
 
          msg_bwrite->data[i] = ntohl (msg_bwrite->data[i]);
          msg_bwrite->data[i] = ntohl (msg_bwrite->data[i]);
          t_err =
          t_err =
            debug_set_register (msg_bwrite->address + 4 * i,
            debug_set_register (msg_bwrite->address + 4 * i,
                                msg_bwrite->data[i]);
                                msg_bwrite->data[i]);
          err = err ? err : t_err;
          err = err ? err : t_err;
        }
        }
      resp_bwrite.status = htonl (err);
      resp_bwrite.status = htonl (err);
      free (buf);
      free (buf);
      buf = NULL;
      buf = NULL;
      msg_bwrite = NULL;
      msg_bwrite = NULL;
      if (gdb_write (&resp_bwrite, sizeof (resp_bwrite)) < 0)
      if (gdb_write (&resp_bwrite, sizeof (resp_bwrite)) < 0)
        {
        {
          if (gdb_fd)
          if (gdb_fd)
            {
            {
              perror ("gdb socket - 4");
              perror ("gdb socket - 4");
              close (gdb_fd);
              close (gdb_fd);
              gdb_fd = 0;
              gdb_fd = 0;
            }
            }
          return;
          return;
        }
        }
      break;
      break;
    case OR1K_JTAG_COMMAND_READ_BLOCK:
    case OR1K_JTAG_COMMAND_READ_BLOCK:
      if (length != sizeof (msg_bread) - 8)
      if (length != sizeof (msg_bread) - 8)
        {
        {
          protocol_clean (length, JTAG_PROXY_PROTOCOL_ERROR);
          protocol_clean (length, JTAG_PROXY_PROTOCOL_ERROR);
          return;
          return;
        }
        }
      buf = (char *) &msg_bread;
      buf = (char *) &msg_bread;
      if (gdb_read (&buf[8], length) < 0)
      if (gdb_read (&buf[8], length) < 0)
        {
        {
          if (gdb_fd)
          if (gdb_fd)
            {
            {
              perror ("gdb socket - 5");
              perror ("gdb socket - 5");
              close (gdb_fd);
              close (gdb_fd);
              gdb_fd = 0;
              gdb_fd = 0;
            }
            }
          return;
          return;
        }
        }
      msg_bread.address = ntohl (msg_bread.address);
      msg_bread.address = ntohl (msg_bread.address);
      msg_bread.num_regs = ntohl (msg_bread.num_regs);
      msg_bread.num_regs = ntohl (msg_bread.num_regs);
      len =
      len =
        sizeof (struct jtr_read_block_response) + 4 * (msg_bread.num_regs - 1);
        sizeof (struct jtr_read_block_response) + 4 * (msg_bread.num_regs - 1);
      if (!(buf = (char *) malloc (len)))
      if (!(buf = (char *) malloc (len)))
        {
        {
          protocol_clean (0, JTAG_PROXY_OUT_OF_MEMORY);
          protocol_clean (0, JTAG_PROXY_OUT_OF_MEMORY);
          return;
          return;
        }
        }
      resp_bread = (struct jtr_read_block_response *) buf;
      resp_bread = (struct jtr_read_block_response *) buf;
      for (i = 0; i < msg_bread.num_regs; i++)
      for (i = 0; i < msg_bread.num_regs; i++)
        {
        {
          int t_err;
          int t_err;
 
 
          t_err =
          t_err =
            debug_get_register (msg_bread.address + 4 * i,
            debug_get_register (msg_bread.address + 4 * i,
                                &resp_bread->data[i]);
                                &resp_bread->data[i]);
          resp_bread->data[i] = htonl (resp_bread->data[i]);
          resp_bread->data[i] = htonl (resp_bread->data[i]);
          err = err ? err : t_err;
          err = err ? err : t_err;
        }
        }
      resp_bread->status = htonl (err);
      resp_bread->status = htonl (err);
      resp_bread->num_regs = htonl (msg_bread.num_regs);
      resp_bread->num_regs = htonl (msg_bread.num_regs);
      if (gdb_write (resp_bread, len) < 0)
      if (gdb_write (resp_bread, len) < 0)
        {
        {
          if (gdb_fd)
          if (gdb_fd)
            {
            {
              perror ("gdb socket - 6");
              perror ("gdb socket - 6");
              close (gdb_fd);
              close (gdb_fd);
              gdb_fd = 0;
              gdb_fd = 0;
            }
            }
          free (buf);
          free (buf);
          return;
          return;
        }
        }
      free (buf);
      free (buf);
      buf = NULL;
      buf = NULL;
      resp_bread = NULL;
      resp_bread = NULL;
      break;
      break;
    case OR1K_JTAG_COMMAND_CHAIN:
    case OR1K_JTAG_COMMAND_CHAIN:
      if (length != sizeof (msg_chain) - 8)
      if (length != sizeof (msg_chain) - 8)
        {
        {
          protocol_clean (length, JTAG_PROXY_PROTOCOL_ERROR);
          protocol_clean (length, JTAG_PROXY_PROTOCOL_ERROR);
          return;
          return;
        }
        }
      buf = (char *) &msg_chain;
      buf = (char *) &msg_chain;
      if (gdb_read (&buf[8], sizeof (msg_chain) - 8) < 0)
      if (gdb_read (&buf[8], sizeof (msg_chain) - 8) < 0)
        {
        {
          if (gdb_fd)
          if (gdb_fd)
            {
            {
              perror ("gdb socket - 7");
              perror ("gdb socket - 7");
              close (gdb_fd);
              close (gdb_fd);
              gdb_fd = 0;
              gdb_fd = 0;
            }
            }
          return;
          return;
        }
        }
      msg_chain.chain = htonl (msg_chain.chain);
      msg_chain.chain = htonl (msg_chain.chain);
      err = debug_set_chain (msg_chain.chain);
      err = debug_set_chain (msg_chain.chain);
      resp_chain.status = htonl (err);
      resp_chain.status = htonl (err);
      if (gdb_write (&resp_chain, sizeof (resp_chain)) < 0)
      if (gdb_write (&resp_chain, sizeof (resp_chain)) < 0)
        {
        {
          if (gdb_fd)
          if (gdb_fd)
            {
            {
              perror ("gdb socket - 8");
              perror ("gdb socket - 8");
              close (gdb_fd);
              close (gdb_fd);
              gdb_fd = 0;
              gdb_fd = 0;
            }
            }
          return;
          return;
        }
        }
      break;
      break;
    default:
    default:
      protocol_clean (length, JTAG_PROXY_COMMAND_NOT_IMPLEMENTED);
      protocol_clean (length, JTAG_PROXY_COMMAND_NOT_IMPLEMENTED);
      break;
      break;
    }
    }
}
}
 
 
static void
static void
protocol_clean (int length, int32_t err)
protocol_clean (int length, int32_t err)
{
{
  char buf[4096];
  char buf[4096];
 
 
  err = htonl (err);
  err = htonl (err);
  if ((gdb_read (buf, length) < 0) ||
  if ((gdb_read (buf, length) < 0) ||
      ((gdb_write (&err, sizeof (err)) < 0) && gdb_fd))
      ((gdb_write (&err, sizeof (err)) < 0) && gdb_fd))
    {
    {
      perror ("gdb socket - 9");
      perror ("gdb socket - 9");
      close (gdb_fd);
      close (gdb_fd);
      gdb_fd = 0;
      gdb_fd = 0;
    }
    }
}
}
 
 
static int
static int
gdb_write (const void *buf, int len)
gdb_write (const void *buf, int len)
{
{
  int n, log_n = 0;
  int n, log_n = 0;
  const char *w_buf = (const char *) buf;
  const char *w_buf = (const char *) buf;
  const uint32_t *log_buf = (const uint32_t *) buf;
  const uint32_t *log_buf = (const uint32_t *) buf;
  struct pollfd block;
  struct pollfd block;
 
 
  while (len)
  while (len)
    {
    {
      if ((n = write (gdb_fd, w_buf, len)) < 0)
      if ((n = write (gdb_fd, w_buf, len)) < 0)
        {
        {
          switch (errno)
          switch (errno)
            {
            {
            case EWOULDBLOCK:   /* or EAGAIN */
            case EWOULDBLOCK:   /* or EAGAIN */
              /* We've been called on a descriptor marked
              /* We've been called on a descriptor marked
                 for nonblocking I/O. We better simulate
                 for nonblocking I/O. We better simulate
                 blocking behavior. */
                 blocking behavior. */
              block.fd = gdb_fd;
              block.fd = gdb_fd;
              block.events = POLLOUT;
              block.events = POLLOUT;
              block.revents = 0;
              block.revents = 0;
              poll (&block, 1, -1);
              poll (&block, 1, -1);
              continue;
              continue;
            case EINTR:
            case EINTR:
              continue;
              continue;
            case EPIPE:
            case EPIPE:
              close (gdb_fd);
              close (gdb_fd);
              gdb_fd = 0;
              gdb_fd = 0;
              return -1;
              return -1;
            default:
            default:
              return -1;
              return -1;
            }
            }
        }
        }
      else
      else
        {
        {
          len -= n;
          len -= n;
          w_buf += n;
          w_buf += n;
          if (config.debug.vapi_id)
          if (config.debug.vapi_id)
            for (log_n += n; log_n >= 4; log_n -= 4, ++log_buf)
            for (log_n += n; log_n >= 4; log_n -= 4, ++log_buf)
              vapi_write_log_file (VAPI_COMMAND_SEND, config.debug.vapi_id,
              vapi_write_log_file (VAPI_COMMAND_SEND, config.debug.vapi_id,
                                   ntohl (*log_buf));
                                   ntohl (*log_buf));
        }
        }
    }
    }
  return 0;
  return 0;
}
}
 
 
static int
static int
gdb_read (void *buf, int len)
gdb_read (void *buf, int len)
{
{
  int n, log_n = 0;
  int n, log_n = 0;
  char *r_buf = (char *) buf;
  char *r_buf = (char *) buf;
  uint32_t *log_buf = (uint32_t *) buf;
  uint32_t *log_buf = (uint32_t *) buf;
  struct pollfd block;
  struct pollfd block;
 
 
  while (len)
  while (len)
    {
    {
      if ((n = read (gdb_fd, r_buf, len)) < 0)
      if ((n = read (gdb_fd, r_buf, len)) < 0)
        {
        {
          switch (errno)
          switch (errno)
            {
            {
            case EWOULDBLOCK:   /* or EAGAIN */
            case EWOULDBLOCK:   /* or EAGAIN */
              /* We've been called on a descriptor marked
              /* We've been called on a descriptor marked
                 for nonblocking I/O. We better simulate
                 for nonblocking I/O. We better simulate
                 blocking behavior. */
                 blocking behavior. */
              block.fd = gdb_fd;
              block.fd = gdb_fd;
              block.events = POLLIN;
              block.events = POLLIN;
              block.revents = 0;
              block.revents = 0;
              poll (&block, 1, -1);
              poll (&block, 1, -1);
              continue;
              continue;
            case EINTR:
            case EINTR:
              continue;
              continue;
            default:
            default:
              return -1;
              return -1;
            }
            }
        }
        }
      else if (n == 0)
      else if (n == 0)
        {
        {
          close (gdb_fd);
          close (gdb_fd);
          gdb_fd = 0;
          gdb_fd = 0;
          return -1;
          return -1;
        }
        }
      else
      else
        {
        {
          len -= n;
          len -= n;
          r_buf += n;
          r_buf += n;
          if (config.debug.vapi_id)
          if (config.debug.vapi_id)
            for (log_n += n; log_n >= 4; log_n -= 4, ++log_buf)
            for (log_n += n; log_n >= 4; log_n -= 4, ++log_buf)
              vapi_write_log_file (VAPI_COMMAND_REQUEST, config.debug.vapi_id,
              vapi_write_log_file (VAPI_COMMAND_REQUEST, config.debug.vapi_id,
                                   ntohl (*log_buf));
                                   ntohl (*log_buf));
        }
        }
    }
    }
  return 0;
  return 0;
}
}
 
 
void
void
gdbcomm_init ()
gdbcomm_init ()
{
{
  server_port = config.debug.server_port;
  server_port = config.debug.server_port;
  if ((server_fd = get_server_socket ("or1ksim", "tcp", server_port)))
  if ((server_fd = get_server_socket ("or1ksim", "tcp", server_port)))
    PRINTF ("JTAG Proxy server started on port %d\n", server_port);
    PRINTF ("JTAG Proxy server started on port %d\n", server_port);
  else
  else
    PRINTF ("Cannot start JTAG proxy server on port %d\n", server_port);
    PRINTF ("Cannot start JTAG proxy server on port %d\n", server_port);
}
}
 
 

powered by: WebSVN 2.1.0

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