* Fixing typo that caused infinite loop upon PKE MPG.
[binutils-gdb.git] / gdb / gdbserver / remote-utils.c
blob5283404bdb0abbb4b91386b7b96880e7241b2d67
1 /* Remote utility routines for the remote server for GDB.
2 Copyright (C) 1986, 1989, 1993 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20 #include "server.h"
21 #include "terminal.h"
22 #include <stdio.h>
23 #include <string.h>
24 #include <sys/ioctl.h>
25 #include <sys/file.h>
26 #include <netinet/in.h>
27 #include <sys/socket.h>
28 #include <netdb.h>
29 #include <netinet/tcp.h>
30 #include <sys/ioctl.h>
31 #include <signal.h>
32 #include <fcntl.h>
34 int remote_debug = 1;
36 static int remote_desc;
38 /* Open a connection to a remote debugger.
39 NAME is the filename used for communication. */
41 void
42 remote_open (name)
43 char *name;
45 int save_fcntl_flags;
47 if (!strchr (name, ':'))
49 remote_desc = open (name, O_RDWR);
50 if (remote_desc < 0)
51 perror_with_name ("Could not open remote device");
53 #ifdef HAVE_TERMIOS
55 struct termios termios;
56 tcgetattr(remote_desc, &termios);
58 termios.c_iflag = 0;
59 termios.c_oflag = 0;
60 termios.c_lflag = 0;
61 termios.c_cflag &= ~(CSIZE|PARENB);
62 termios.c_cflag |= CLOCAL | CS8;
63 termios.c_cc[VMIN] = 0;
64 termios.c_cc[VTIME] = 0;
66 tcsetattr(remote_desc, TCSANOW, &termios);
68 #endif
70 #ifdef HAVE_TERMIO
72 struct termio termio;
73 ioctl (remote_desc, TCGETA, &termio);
75 termio.c_iflag = 0;
76 termio.c_oflag = 0;
77 termio.c_lflag = 0;
78 termio.c_cflag &= ~(CSIZE|PARENB);
79 termio.c_cflag |= CLOCAL | CS8;
80 termio.c_cc[VMIN] = 0;
81 termio.c_cc[VTIME] = 0;
83 ioctl (remote_desc, TCSETA, &termio);
85 #endif
87 #ifdef HAVE_SGTTY
89 struct sgttyb sg;
91 ioctl (remote_desc, TIOCGETP, &sg);
92 sg.sg_flags = RAW;
93 ioctl (remote_desc, TIOCSETP, &sg);
95 #endif
99 else
101 char *port_str;
102 int port;
103 struct sockaddr_in sockaddr;
104 int tmp;
105 struct protoent *protoent;
106 int tmp_desc;
108 port_str = strchr (name, ':');
110 port = atoi (port_str + 1);
112 tmp_desc = socket (PF_INET, SOCK_STREAM, 0);
113 if (tmp_desc < 0)
114 perror_with_name ("Can't open socket");
116 /* Allow rapid reuse of this port. */
117 tmp = 1;
118 setsockopt (tmp_desc, SOL_SOCKET, SO_REUSEADDR, (char *)&tmp,
119 sizeof(tmp));
121 sockaddr.sin_family = PF_INET;
122 sockaddr.sin_port = htons(port);
123 sockaddr.sin_addr.s_addr = INADDR_ANY;
125 if (bind (tmp_desc, (struct sockaddr *)&sockaddr, sizeof (sockaddr))
126 || listen (tmp_desc, 1))
127 perror_with_name ("Can't bind address");
129 tmp = sizeof (sockaddr);
130 remote_desc = accept (tmp_desc, (struct sockaddr *)&sockaddr, &tmp);
131 if (remote_desc == -1)
132 perror_with_name ("Accept failed");
134 protoent = getprotobyname ("tcp");
135 if (!protoent)
136 perror_with_name ("getprotobyname");
138 /* Enable TCP keep alive process. */
139 tmp = 1;
140 setsockopt (tmp_desc, SOL_SOCKET, SO_KEEPALIVE, (char *)&tmp, sizeof(tmp));
142 /* Tell TCP not to delay small packets. This greatly speeds up
143 interactive response. */
144 tmp = 1;
145 setsockopt (remote_desc, protoent->p_proto, TCP_NODELAY,
146 (char *)&tmp, sizeof(tmp));
148 close (tmp_desc); /* No longer need this */
150 signal (SIGPIPE, SIG_IGN); /* If we don't do this, then gdbserver simply
151 exits when the remote side dies. */
154 #if defined(F_SETFL) && defined (FASYNC)
155 save_fcntl_flags = fcntl (remote_desc, F_GETFL, 0);
156 fcntl (remote_desc, F_SETFL, save_fcntl_flags | FASYNC);
157 disable_async_io ();
158 #endif /* FASYNC */
159 fprintf (stderr, "Remote debugging using %s\n", name);
162 void
163 remote_close()
165 close (remote_desc);
168 /* Convert hex digit A to a number. */
170 static int
171 fromhex (a)
172 int a;
174 if (a >= '0' && a <= '9')
175 return a - '0';
176 else if (a >= 'a' && a <= 'f')
177 return a - 'a' + 10;
178 else
179 error ("Reply contains invalid hex digit");
182 /* Convert number NIB to a hex digit. */
184 static int
185 tohex (nib)
186 int nib;
188 if (nib < 10)
189 return '0' + nib;
190 else
191 return 'a' + nib - 10;
194 /* Send a packet to the remote machine, with error checking.
195 The data of the packet is in BUF. Returns >= 0 on success, -1 otherwise. */
198 putpkt (buf)
199 char *buf;
201 int i;
202 unsigned char csum = 0;
203 char buf2[2000];
204 char buf3[1];
205 int cnt = strlen (buf);
206 char *p;
208 /* Copy the packet into buffer BUF2, encapsulating it
209 and giving it a checksum. */
211 p = buf2;
212 *p++ = '$';
214 for (i = 0; i < cnt; i++)
216 csum += buf[i];
217 *p++ = buf[i];
219 *p++ = '#';
220 *p++ = tohex ((csum >> 4) & 0xf);
221 *p++ = tohex (csum & 0xf);
223 *p = '\0';
225 /* Send it over and over until we get a positive ack. */
229 int cc;
231 if (write (remote_desc, buf2, p - buf2) != p - buf2)
233 perror ("putpkt(write)");
234 return -1;
237 if (remote_debug)
238 printf ("putpkt (\"%s\"); [looking for ack]\n", buf2);
239 cc = read (remote_desc, buf3, 1);
240 if (remote_debug)
241 printf ("[received '%c' (0x%x)]\n", buf3[0], buf3[0]);
242 if (cc <= 0)
244 if (cc == 0)
245 fprintf (stderr, "putpkt(read): Got EOF\n");
246 else
247 perror ("putpkt(read)");
249 return -1;
252 while (buf3[0] != '+');
254 return 1; /* Success! */
257 /* Come here when we get an input interrupt from the remote side. This
258 interrupt should only be active while we are waiting for the child to do
259 something. About the only thing that should come through is a ^C, which
260 will cause us to send a SIGINT to the child. */
262 static void
263 input_interrupt()
265 int cc;
266 char c;
268 cc = read (remote_desc, &c, 1);
270 if (cc != 1 || c != '\003')
272 fprintf(stderr, "input_interrupt, cc = %d c = %d\n", cc, c);
273 return;
276 kill (inferior_pid, SIGINT);
279 void
280 enable_async_io()
282 signal (SIGIO, input_interrupt);
285 void
286 disable_async_io()
288 signal (SIGIO, SIG_IGN);
291 /* Returns next char from remote GDB. -1 if error. */
293 static int
294 readchar ()
296 static char buf[BUFSIZ];
297 static int bufcnt = 0;
298 static char *bufp;
300 if (bufcnt-- > 0)
301 return *bufp++ & 0x7f;
303 bufcnt = read (remote_desc, buf, sizeof (buf));
305 if (bufcnt <= 0)
307 if (bufcnt == 0)
308 fprintf (stderr, "readchar: Got EOF\n");
309 else
310 perror ("readchar");
312 return -1;
315 bufp = buf;
316 bufcnt--;
317 return *bufp++ & 0x7f;
320 /* Read a packet from the remote machine, with error checking,
321 and store it in BUF. Returns length of packet, or negative if error. */
324 getpkt (buf)
325 char *buf;
327 char *bp;
328 unsigned char csum, c1, c2;
329 int c;
331 while (1)
333 csum = 0;
335 while (1)
337 c = readchar ();
338 if (c == '$')
339 break;
340 if (remote_debug)
341 printf ("[getpkt: discarding char '%c']\n", c);
342 if (c < 0)
343 return -1;
346 bp = buf;
347 while (1)
349 c = readchar ();
350 if (c < 0)
351 return -1;
352 if (c == '#')
353 break;
354 *bp++ = c;
355 csum += c;
357 *bp = 0;
359 c1 = fromhex (readchar ());
360 c2 = fromhex (readchar ());
362 if (csum == (c1 << 4) + c2)
363 break;
365 fprintf (stderr, "Bad checksum, sentsum=0x%x, csum=0x%x, buf=%s\n",
366 (c1 << 4) + c2, csum, buf);
367 write (remote_desc, "-", 1);
370 if (remote_debug)
371 printf ("getpkt (\"%s\"); [sending ack] \n", buf);
373 write (remote_desc, "+", 1);
375 if (remote_debug)
376 printf ("[sent ack]\n");
377 return bp - buf;
380 void
381 write_ok (buf)
382 char *buf;
384 buf[0] = 'O';
385 buf[1] = 'K';
386 buf[2] = '\0';
389 void
390 write_enn (buf)
391 char *buf;
393 buf[0] = 'E';
394 buf[1] = 'N';
395 buf[2] = 'N';
396 buf[3] = '\0';
399 void
400 convert_int_to_ascii (from, to, n)
401 char *from, *to;
402 int n;
404 int nib;
405 char ch;
406 while (n--)
408 ch = *from++;
409 nib = ((ch & 0xf0) >> 4) & 0x0f;
410 *to++ = tohex (nib);
411 nib = ch & 0x0f;
412 *to++ = tohex (nib);
414 *to++ = 0;
418 void
419 convert_ascii_to_int (from, to, n)
420 char *from, *to;
421 int n;
423 int nib1, nib2;
424 while (n--)
426 nib1 = fromhex (*from++);
427 nib2 = fromhex (*from++);
428 *to++ = (((nib1 & 0x0f) << 4) & 0xf0) | (nib2 & 0x0f);
432 static char *
433 outreg(regno, buf)
434 int regno;
435 char *buf;
437 extern char registers[];
438 int regsize = REGISTER_RAW_SIZE (regno);
440 *buf++ = tohex (regno >> 4);
441 *buf++ = tohex (regno & 0xf);
442 *buf++ = ':';
443 convert_int_to_ascii (&registers[REGISTER_BYTE (regno)], buf, regsize);
444 buf += 2 * regsize;
445 *buf++ = ';';
447 return buf;
450 void
451 prepare_resume_reply (buf, status, signo)
452 char *buf;
453 char status;
454 unsigned char signo;
456 int nib;
458 *buf++ = status;
460 /* FIXME! Should be converting this signal number (numbered
461 according to the signal numbering of the system we are running on)
462 to the signal numbers used by the gdb protocol (see enum target_signal
463 in gdb/target.h). */
464 nib = ((signo & 0xf0) >> 4);
465 *buf++ = tohex (nib);
466 nib = signo & 0x0f;
467 *buf++ = tohex (nib);
469 if (status == 'T')
471 buf = outreg (PC_REGNUM, buf);
472 buf = outreg (FP_REGNUM, buf);
473 buf = outreg (SP_REGNUM, buf);
474 #ifdef NPC_REGNUM
475 buf = outreg (NPC_REGNUM, buf);
476 #endif
477 #ifdef O7_REGNUM
478 buf = outreg (O7_REGNUM, buf);
479 #endif
481 /* If the debugger hasn't used any thread features, don't burden it with
482 threads. If we didn't check this, GDB 4.13 and older would choke. */
483 if (cont_thread != 0)
485 if (old_thread_from_wait != thread_from_wait)
487 sprintf (buf, "thread:%x;", thread_from_wait);
488 buf += strlen (buf);
489 old_thread_from_wait = thread_from_wait;
493 /* For W and X, we're done. */
494 *buf++ = 0;
497 void
498 decode_m_packet (from, mem_addr_ptr, len_ptr)
499 char *from;
500 CORE_ADDR *mem_addr_ptr;
501 unsigned int *len_ptr;
503 int i = 0, j = 0;
504 char ch;
505 *mem_addr_ptr = *len_ptr = 0;
507 while ((ch = from[i++]) != ',')
509 *mem_addr_ptr = *mem_addr_ptr << 4;
510 *mem_addr_ptr |= fromhex (ch) & 0x0f;
513 for (j = 0; j < 4; j++)
515 if ((ch = from[i++]) == 0)
516 break;
517 *len_ptr = *len_ptr << 4;
518 *len_ptr |= fromhex (ch) & 0x0f;
522 void
523 decode_M_packet (from, mem_addr_ptr, len_ptr, to)
524 char *from, *to;
525 CORE_ADDR *mem_addr_ptr;
526 unsigned int *len_ptr;
528 int i = 0;
529 char ch;
530 *mem_addr_ptr = *len_ptr = 0;
532 while ((ch = from[i++]) != ',')
534 *mem_addr_ptr = *mem_addr_ptr << 4;
535 *mem_addr_ptr |= fromhex (ch) & 0x0f;
538 while ((ch = from[i++]) != ':')
540 *len_ptr = *len_ptr << 4;
541 *len_ptr |= fromhex (ch) & 0x0f;
544 convert_ascii_to_int (&from[i++], to, *len_ptr);