]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/xml-syscall.c
2010-05-06 Michael Snyder <msnyder@vmware.com>
[thirdparty/binutils-gdb.git] / gdb / xml-syscall.c
CommitLineData
fbbe92c5
SDJ
1/* Functions that provide the mechanism to parse a syscall XML file
2 and get its values.
3
4c38e0a4 4 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
fbbe92c5
SDJ
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
21#include "defs.h"
22#include "gdbtypes.h"
23#include "xml-support.h"
24#include "xml-syscall.h"
25
26/* For the struct syscall definition. */
27#include "target.h"
28
29#include "filenames.h"
30
31#include "gdb_assert.h"
32
33#ifndef HAVE_LIBEXPAT
34
35/* Dummy functions to indicate that there's no support for fetching
36 syscalls information. */
37
38static void
39syscall_warn_user (void)
40{
41 static int have_warned = 0;
42 if (!have_warned)
43 {
44 have_warned = 1;
45 warning (_("Can not parse XML syscalls information; XML support was "
46 "disabled at compile time."));
47 }
48}
49
50void
51set_xml_syscall_file_name (const char *name)
52{
bccd0dd2 53 return;
fbbe92c5
SDJ
54}
55
56void
57get_syscall_by_number (int syscall_number,
58 struct syscall *s)
59{
60 syscall_warn_user ();
61 s->number = syscall_number;
62 s->name = NULL;
63}
64
65void
66get_syscall_by_name (const char *syscall_name,
67 struct syscall *s)
68{
69 syscall_warn_user ();
70 s->number = UNKNOWN_SYSCALL;
71 s->name = syscall_name;
72}
73
74const char **
75get_syscall_names (void)
76{
77 syscall_warn_user ();
78 return NULL;
79}
80
fbbe92c5
SDJ
81#else /* ! HAVE_LIBEXPAT */
82
626ea16d
SDJ
83/* Variable that will hold the last known data-directory. This is useful to
84 know whether we should re-read the XML info for the target. */
85static char *my_gdb_datadir = NULL;
86
fbbe92c5
SDJ
87/* Structure which describes a syscall. */
88typedef struct syscall_desc
89{
90 /* The syscall number. */
91
92 int number;
93
94 /* The syscall name. */
95
96 char *name;
97} *syscall_desc_p;
98DEF_VEC_P(syscall_desc_p);
99
100/* Structure that represents syscalls information. */
101struct syscalls_info
102{
103 /* The syscalls. */
104
105 VEC(syscall_desc_p) *syscalls;
106};
107
108/* Callback data for syscall information parsing. */
109struct syscall_parsing_data
110{
111 /* The syscalls_info we are building. */
112
113 struct syscalls_info *sysinfo;
114};
115
116/* Structure used to store information about the available syscalls in
117 the system. */
bccd0dd2 118static const struct syscalls_info *sysinfo = NULL;
fbbe92c5
SDJ
119
120/* A flag to tell if we already initialized the structure above. */
121static int have_initialized_sysinfo = 0;
122
123/* The filename of the syscall's XML. */
124static const char *xml_syscall_file = NULL;
125
126static struct syscalls_info *
127allocate_syscalls_info (void)
128{
129 return XZALLOC (struct syscalls_info);
130}
131
132static void
133sysinfo_free_syscalls_desc (struct syscall_desc *sd)
134{
135 xfree (sd->name);
136}
137
138static void
139free_syscalls_info (void *arg)
140{
141 struct syscalls_info *sysinfo = arg;
142 struct syscall_desc *sysdesc;
143 int i;
144
145 for (i = 0;
146 VEC_iterate (syscall_desc_p, sysinfo->syscalls, i, sysdesc);
147 i++)
148 sysinfo_free_syscalls_desc (sysdesc);
149 VEC_free (syscall_desc_p, sysinfo->syscalls);
150
151 xfree (sysinfo);
152}
153
154struct cleanup *
155make_cleanup_free_syscalls_info (struct syscalls_info *sysinfo)
156{
157 return make_cleanup (free_syscalls_info, sysinfo);
158}
159
160static void
161syscall_create_syscall_desc (struct syscalls_info *sysinfo,
162 const char *name, int number)
163{
164 struct syscall_desc *sysdesc = XZALLOC (struct syscall_desc);
165
166 sysdesc->name = xstrdup (name);
167 sysdesc->number = number;
168
169 VEC_safe_push (syscall_desc_p, sysinfo->syscalls, sysdesc);
170}
171
172/* Handle the start of a <syscalls_info> element. */
173static void
174syscall_start_syscalls_info (struct gdb_xml_parser *parser,
175 const struct gdb_xml_element *element,
176 void *user_data,
177 VEC(gdb_xml_value_s) *attributes)
178{
179 struct syscall_parsing_data *data = user_data;
180 struct syscalls_info *sysinfo = data->sysinfo;
181}
182
183/* Handle the start of a <syscall> element. */
184static void
185syscall_start_syscall (struct gdb_xml_parser *parser,
186 const struct gdb_xml_element *element,
187 void *user_data, VEC(gdb_xml_value_s) *attributes)
188{
189 struct syscall_parsing_data *data = user_data;
190 struct gdb_xml_value *attrs = VEC_address (gdb_xml_value_s, attributes);
191 int len, i;
192 /* syscall info. */
193 char *name = NULL;
194 int number = 0;
195
196 len = VEC_length (gdb_xml_value_s, attributes);
197
198 for (i = 0; i < len; i++)
199 {
200 if (strcmp (attrs[i].name, "name") == 0)
201 name = attrs[i].value;
202 else if (strcmp (attrs[i].name, "number") == 0)
203 number = * (ULONGEST *) attrs[i].value;
204 else
205 internal_error (__FILE__, __LINE__,
206 _("Unknown attribute name '%s'."), attrs[i].name);
207 }
208
209 syscall_create_syscall_desc (data->sysinfo, name, number);
210}
211
212
213/* The elements and attributes of an XML syscall document. */
214static const struct gdb_xml_attribute syscall_attr[] = {
215 { "number", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
216 { "name", GDB_XML_AF_NONE, NULL, NULL },
217 { NULL, GDB_XML_AF_NONE, NULL, NULL }
218};
219
220static const struct gdb_xml_element syscalls_info_children[] = {
221 { "syscall", syscall_attr, NULL,
222 GDB_XML_EF_OPTIONAL | GDB_XML_EF_REPEATABLE,
223 syscall_start_syscall, NULL },
224 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
225};
226
227static const struct gdb_xml_element syselements[] = {
228 { "syscalls_info", NULL, syscalls_info_children,
229 GDB_XML_EF_NONE, syscall_start_syscalls_info, NULL },
230 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
231};
232
233static struct syscalls_info *
234syscall_parse_xml (const char *document, xml_fetch_another fetcher,
235 void *fetcher_baton)
236{
237 struct cleanup *result_cleanup;
238 struct gdb_xml_parser *parser;
239 struct syscall_parsing_data data;
fbbe92c5
SDJ
240
241 parser = gdb_xml_create_parser_and_cleanup (_("syscalls info"),
242 syselements, &data);
243
244 memset (&data, 0, sizeof (struct syscall_parsing_data));
245 data.sysinfo = allocate_syscalls_info ();
246 result_cleanup = make_cleanup_free_syscalls_info (data.sysinfo);
247
248 if (gdb_xml_parse (parser, document) == 0)
249 {
250 /* Parsed successfully. */
251 discard_cleanups (result_cleanup);
252 return data.sysinfo;
253 }
254 else
255 {
256 warning (_("Could not load XML syscalls info; ignoring"));
257 do_cleanups (result_cleanup);
258 return NULL;
259 }
260}
261
262/* Function responsible for initializing the information
263 about the syscalls. It reads the XML file and fills the
264 struct syscalls_info with the values.
265
266 Returns the struct syscalls_info if the file is valid, NULL otherwise. */
267static const struct syscalls_info *
268xml_init_syscalls_info (const char *filename)
269{
270 char *full_file;
271 char *dirname;
272 struct syscalls_info *sysinfo;
273 struct cleanup *back_to;
274
275 full_file = xml_fetch_content_from_file (filename, gdb_datadir);
276 if (full_file == NULL)
bccd0dd2 277 return NULL;
fbbe92c5
SDJ
278
279 back_to = make_cleanup (xfree, full_file);
280
281 dirname = ldirname (filename);
282 if (dirname != NULL)
283 make_cleanup (xfree, dirname);
284
285 sysinfo = syscall_parse_xml (full_file, xml_fetch_content_from_file, dirname);
286 do_cleanups (back_to);
287
288 return sysinfo;
289}
290
291/* Initializes the syscalls_info structure according to the
292 architecture. */
293static void
294init_sysinfo (void)
295{
626ea16d
SDJ
296 /* Should we re-read the XML info for this target? */
297 if (my_gdb_datadir && strcmp (my_gdb_datadir, gdb_datadir) != 0)
298 {
299 /* The data-directory changed from the last time we used it.
300 It means that we have to re-read the XML info. */
301 have_initialized_sysinfo = 0;
302 xfree (my_gdb_datadir);
303 my_gdb_datadir = NULL;
304 if (sysinfo)
305 free_syscalls_info ((void *) sysinfo);
306 }
307
fbbe92c5
SDJ
308 /* Did we already try to initialize the structure? */
309 if (have_initialized_sysinfo)
310 return;
fbbe92c5 311
bccd0dd2 312 sysinfo = xml_init_syscalls_info (xml_syscall_file);
fbbe92c5
SDJ
313
314 have_initialized_sysinfo = 1;
315
bccd0dd2 316 if (sysinfo == NULL)
fbbe92c5
SDJ
317 {
318 if (xml_syscall_file)
bccd0dd2 319 warning (_("\
626ea16d
SDJ
320Could not load the syscall XML file `%s/%s'."),
321 gdb_datadir, xml_syscall_file);
fbbe92c5 322 else
bccd0dd2
SDJ
323 warning (_("\
324There is no XML file to open."));
325
326 warning (_("\
327GDB will not be able to display syscall names nor to verify if\n\
328any provided syscall numbers are valid."));
fbbe92c5 329 }
626ea16d
SDJ
330
331 /* Saving the data-directory used to read this XML info. */
332 my_gdb_datadir = xstrdup (gdb_datadir);
fbbe92c5
SDJ
333}
334
335static int
336xml_get_syscall_number (const struct syscalls_info *sysinfo,
337 const char *syscall_name)
338{
339 struct syscall_desc *sysdesc;
340 int i;
341
342 if (sysinfo == NULL
343 || syscall_name == NULL)
344 return UNKNOWN_SYSCALL;
345
346 for (i = 0;
347 VEC_iterate(syscall_desc_p, sysinfo->syscalls, i, sysdesc);
348 i++)
349 if (strcmp (sysdesc->name, syscall_name) == 0)
350 return sysdesc->number;
351
352 return UNKNOWN_SYSCALL;
353}
354
355static const char *
356xml_get_syscall_name (const struct syscalls_info *sysinfo,
357 int syscall_number)
358{
359 struct syscall_desc *sysdesc;
360 int i;
361
362 if (sysinfo == NULL
363 || syscall_number < 0)
364 return NULL;
365
366 for (i = 0;
367 VEC_iterate(syscall_desc_p, sysinfo->syscalls, i, sysdesc);
368 i++)
369 if (sysdesc->number == syscall_number)
370 return sysdesc->name;
371
372 return NULL;
373}
374
fbbe92c5
SDJ
375static const char **
376xml_list_of_syscalls (const struct syscalls_info *sysinfo)
377{
378 struct syscall_desc *sysdesc;
379 const char **names = NULL;
380 int nsyscalls;
381 int i;
382
383 if (sysinfo == NULL)
384 return NULL;
385
386 nsyscalls = VEC_length (syscall_desc_p, sysinfo->syscalls);
387 names = xmalloc ((nsyscalls + 1) * sizeof (char *));
388
389 for (i = 0;
390 VEC_iterate (syscall_desc_p, sysinfo->syscalls, i, sysdesc);
391 i++)
392 names[i] = sysdesc->name;
393
394 names[i] = NULL;
395
396 return names;
397}
398
399void
400set_xml_syscall_file_name (const char *name)
401{
402 xml_syscall_file = name;
403}
404
405void
406get_syscall_by_number (int syscall_number,
407 struct syscall *s)
408{
409 init_sysinfo ();
410
411 s->number = syscall_number;
bccd0dd2 412 s->name = xml_get_syscall_name (sysinfo, syscall_number);
fbbe92c5
SDJ
413}
414
415void
416get_syscall_by_name (const char *syscall_name,
417 struct syscall *s)
418{
419 init_sysinfo ();
420
bccd0dd2 421 s->number = xml_get_syscall_number (sysinfo, syscall_name);
fbbe92c5
SDJ
422 s->name = syscall_name;
423}
424
425const char **
426get_syscall_names (void)
427{
428 init_sysinfo ();
429
bccd0dd2 430 return xml_list_of_syscalls (sysinfo);
fbbe92c5
SDJ
431}
432
433#endif /* ! HAVE_LIBEXPAT */