gdbtypes.resolve_dynamic_range: Add function description.
[deliverable/binutils-gdb.git] / gdb / gdbserver / utils.c
CommitLineData
c906108c 1/* General utility routines for the remote server for GDB.
ecd75fc8 2 Copyright (C) 1986-2014 Free Software Foundation, Inc.
c906108c 3
c5aa993b 4 This file is part of GDB.
c906108c 5
c5aa993b
JM
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
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
c5aa993b 9 (at your option) any later version.
c906108c 10
c5aa993b
JM
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.
c906108c 15
c5aa993b 16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
18
19#include "server.h"
20#include <stdio.h>
21#include <string.h>
68070c10
PA
22#include <stdlib.h>
23#if HAVE_ERRNO_H
24#include <errno.h>
25#endif
c906108c 26
fa593d66
PA
27#ifdef IN_PROCESS_AGENT
28# define PREFIX "ipa: "
29# define TOOLNAME "GDBserver in-process agent"
30#else
31# define PREFIX "gdbserver: "
32# define TOOLNAME "GDBserver"
33#endif
34
c906108c
SS
35/* Generally useful subroutines used throughout the program. */
36
d26e3629
KY
37void
38malloc_failure (long size)
bca929d3 39{
493e2a69
MS
40 fprintf (stderr,
41 PREFIX "ran out of memory while trying to allocate %lu bytes\n",
bca929d3
DE
42 (unsigned long) size);
43 exit (1);
44}
45
bca929d3
DE
46/* Copy a string into a memory buffer.
47 If malloc fails, this will print a message to stderr and exit. */
48
49char *
50xstrdup (const char *s)
51{
52 char *ret = strdup (s);
53 if (ret == NULL)
54 malloc_failure (strlen (s) + 1);
55 return ret;
56}
57
fa593d66
PA
58#ifndef IN_PROCESS_AGENT
59
aef93bd7
DE
60/* Free a standard argv vector. */
61
62void
63freeargv (char **vector)
64{
65 char **scan;
66
67 if (vector != NULL)
68 {
69 for (scan = vector; *scan != NULL; scan++)
70 {
71 free (*scan);
72 }
73 free (vector);
74 }
75}
76
fa593d66
PA
77#endif
78
c906108c
SS
79/* Print the system error message for errno, and also mention STRING
80 as the file name for which the error was encountered.
81 Then return to command level. */
82
83void
54363045 84perror_with_name (const char *string)
c906108c 85{
5c44784c 86 const char *err;
c906108c
SS
87 char *combined;
88
43d5792c
DJ
89 err = strerror (errno);
90 if (err == NULL)
c906108c
SS
91 err = "unknown error";
92
93 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
94 strcpy (combined, string);
95 strcat (combined, ": ");
96 strcat (combined, err);
97
98 error ("%s.", combined);
99}
100
101/* Print an error message and return to command level.
102 STRING is the error message, used as a fprintf string,
103 and ARG is passed as an argument to it. */
104
0729219d 105void
c5aa993b 106error (const char *string,...)
c906108c 107{
fa593d66 108#ifndef IN_PROCESS_AGENT
c906108c 109 extern jmp_buf toplevel;
fa593d66 110#endif
c906108c 111 va_list args;
c906108c 112 va_start (args, string);
c906108c 113 fflush (stdout);
c906108c 114 vfprintf (stderr, string, args);
c906108c 115 fprintf (stderr, "\n");
fa593d66 116#ifndef IN_PROCESS_AGENT
c5aa993b 117 longjmp (toplevel, 1);
fa593d66
PA
118#else
119 exit (1);
120#endif
c906108c
SS
121}
122
123/* Print an error message and exit reporting failure.
124 This is for a error that we cannot continue from.
125 STRING and ARG are passed to fprintf. */
126
127/* VARARGS */
0729219d 128void
0a30fbc4 129fatal (const char *string,...)
c906108c
SS
130{
131 va_list args;
c906108c 132 va_start (args, string);
fa593d66 133 fprintf (stderr, PREFIX);
c906108c
SS
134 vfprintf (stderr, string, args);
135 fprintf (stderr, "\n");
136 va_end (args);
137 exit (1);
138}
0a30fbc4
DJ
139
140/* VARARGS */
141void
142warning (const char *string,...)
143{
144 va_list args;
145 va_start (args, string);
fa593d66 146 fprintf (stderr, PREFIX);
0a30fbc4
DJ
147 vfprintf (stderr, string, args);
148 fprintf (stderr, "\n");
149 va_end (args);
150}
aa5ca48f 151
e92d13d5
PA
152/* Report a problem internal to GDBserver, and exit. */
153
154void
155internal_error (const char *file, int line, const char *fmt, ...)
156{
157 va_list args;
158 va_start (args, fmt);
159
160 fprintf (stderr, "\
fa593d66 161%s:%d: A problem internal to " TOOLNAME " has been detected.\n", file, line);
e92d13d5
PA
162 vfprintf (stderr, fmt, args);
163 fprintf (stderr, "\n");
164 va_end (args);
165 exit (1);
166}
167
5c3216e2
OS
168/* Convert a CORE_ADDR into a HEX string, like %lx.
169 The result is stored in a circular static buffer, NUMCELLS deep. */
170
171char *
172paddress (CORE_ADDR addr)
173{
174 return phex_nz (addr, sizeof (CORE_ADDR));
175}
ec48365d
PA
176
177/* Convert a file descriptor into a printable string. */
178
179char *
180pfildes (gdb_fildes_t fd)
181{
182#if USE_WIN32API
183 return phex_nz (fd, sizeof (gdb_fildes_t));
184#else
185 return plongest (fd);
186#endif
187}
This page took 1.056502 seconds and 4 git commands to generate.