1 /* Kernel Object Display facility for Cisco
2 Copyright 1999, 2000 Free Software Foundation, Inc.
4 Written by Tom Tromey <tromey@cygnus.com>.
6 This file is part of GDB.
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 2 of the License, or
11 (at your option) any later version.
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.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 #include "gdb_string.h"
30 /* Define this to turn off communication with target. */
31 /* #define FAKE_PACKET */
33 /* Size of buffer used for remote communication. */
36 /* Pointers to gdb callbacks. */
37 static void (*gdb_kod_display
) (char *);
38 static void (*gdb_kod_query
) (char *, char *, int *);
42 /* Initialize and return library name and version.
43 The gdb side of KOD, kod.c, passes us two functions: one for
44 displaying output (presumably to the user) and the other for
45 querying the target. */
47 cisco_kod_open (kod_display_callback_ftype
*display_func
,
48 kod_query_callback_ftype
*query_func
)
54 gdb_kod_display
= display_func
;
55 gdb_kod_query
= query_func
;
57 /* Get the OS info, and check the version field. This is the stub
58 version, which we use to see whether we will understand what
59 comes back. This is lame, but the `qKoL' request doesn't
60 actually provide enough configurability.
62 Right now the only defined version number is `0.0.0'.
63 This stub supports qKoI and the `a' (any) object requests qKaL
64 and qKaI. Each `a' object is returned as a 4-byte integer ID.
65 An info request on an object returns a pair of 4-byte integers;
66 the first is the object pointer and the second is the thread ID. */
69 (*gdb_kod_query
) ("oI;", buffer
, &bufsiz
);
71 strcpy (buffer
, "Cisco IOS/Classic/13.4 0.0.0");
75 for (i
= 0; count
&& buffer
[i
] != '\0'; ++i
)
81 if (buffer
[i
] == '\0')
82 error (_("Remote returned malformed packet."));
83 if (strcmp (&buffer
[i
], "0.0.0"))
84 error (_("Remote returned unknown stub version: %s."), &buffer
[i
]);
86 /* Return name, version, and description. I hope we have enough
88 return (xstrdup ("gdbkodcisco v0.0.0 - Cisco Kernel Object Display"));
91 /* Close the connection. */
93 cisco_kod_close (void)
97 /* Print a "bad packet" message. */
101 (*gdb_kod_display
) ("Remote target returned malformed packet.\n");
104 /* Print information about currently known kernel objects.
105 We currently ignore the argument. There is only one mode of
106 querying the Cisco kernel: we ask for a dump of everything, and
109 cisco_kod_request (char *arg
, int from_tty
)
111 char buffer
[PBUFSIZ
], command
[PBUFSIZ
];
115 char **sync_ids
= NULL
;
118 char *prev_id
= NULL
;
120 if (! arg
|| strcmp (arg
, "any"))
122 /* "Top-level" command. This is really silly, but it also seems
123 to be how KOD is defined. */
124 /* Even sillier is the fact that this first line must start
125 with the word "List". See kod.tcl. */
126 (*gdb_kod_display
) ("List of Cisco Kernel Objects\n");
127 (*gdb_kod_display
) ("Object\tDescription\n");
128 (*gdb_kod_display
) ("any\tAny and all objects\n");
134 int off
= 0; /* Where we are in the string. */
135 long count
; /* Number of objects in this packet. */
136 int bufsiz
= PBUFSIZ
;
139 strcpy (command
, "aL");
142 strcat (command
, ",");
143 strcat (command
, prev_id
);
145 strcat (command
, ";");
148 /* We talk to the target by calling through the query function
149 passed to us when we were initialized. */
150 (*gdb_kod_query
) (command
, buffer
, &bufsiz
);
152 /* Fake up a multi-part packet. */
153 if (! strncmp (&command
[3], "a500005a", 8))
154 strcpy (buffer
, "KAL,01,1,f500005f;f500005f;");
156 strcpy (buffer
, "KAL,02,0,a500005a;a500005a;de02869f;");
159 /* Empty response is an error. */
160 if (strlen (buffer
) == 0)
162 (*gdb_kod_display
) ("Remote target did not recognize kernel object query command.\n");
167 /* If we don't get a `K' response then the buffer holds the
168 target's error message. */
169 if (buffer
[0] != 'K')
171 (*gdb_kod_display
) (buffer
);
176 /* Make sure we get the response we expect. */
177 if (strncmp (buffer
, "KAL,", 4))
185 /* Parse out the count. We expect to convert exactly two
186 characters followed by a comma. */
187 count
= strtol (&buffer
[off
], &s_end
, 16);
188 if (s_end
- &buffer
[off
] != 2 || buffer
[off
+ 2] != ',')
196 /* Parse out the `done' flag. */
197 if ((buffer
[off
] != '0' && buffer
[off
] != '1')
198 || buffer
[off
+ 1] != ',')
204 done
= buffer
[off
] == '1';
207 /* Id of the last item; we might this to construct the next
209 prev_id
= &buffer
[off
];
210 if (strlen (prev_id
) < 8 || buffer
[off
+ 8] != ';')
216 buffer
[off
+ 8] = '\0';
220 sync_ids
= (char **) xrealloc (sync_ids
, sync_len
* sizeof (char *));
222 for (i
= 0; i
< count
; ++i
)
224 if (strlen (&buffer
[off
]) < 8 || buffer
[off
+ 8] != ';')
230 buffer
[off
+ 8] = '\0';
231 sync_ids
[sync_next
++] = xstrdup (&buffer
[off
]);
235 if (buffer
[off
] != '\0')
243 /* We've collected all the sync object IDs. Now query to get the
244 specific information, and arrange to print this info. */
247 (*gdb_kod_display
) ("Object ID\tObject Pointer\tThread ID\n");
249 for (i
= 0; i
< sync_next
; ++i
)
252 int bufsiz
= PBUFSIZ
;
254 /* For now assume a query can be accomplished in a single
255 transaction. This is implied in the protocol document.
256 See comments above, and the KOD protocol document, to
257 understand the parsing of the return value. */
258 strcpy (command
, "aI,");
259 strcat (command
, sync_ids
[i
]);
260 strcat (command
, ";");
263 (*gdb_kod_query
) (command
, buffer
, &bufsiz
);
265 strcpy (buffer
, "KAI,");
266 strcat (buffer
, sync_ids
[i
]);
267 strcat (buffer
, ",ffef00a0,cd00123d;");
270 if (strlen (buffer
) == 0)
272 (*gdb_kod_display
) ("Remote target did not recognize KOD command.\n");
276 if (strncmp (buffer
, "KAI,", 4))
283 if (strncmp (&buffer
[off
], sync_ids
[i
], 8)
284 || buffer
[off
+ 8] != ',')
291 /* Extract thread id and sync object pointer. */
292 if (strlen (&buffer
[off
]) != 2 * 8 + 2
293 || buffer
[off
+ 8] != ','
294 || buffer
[off
+ 17] != ';')
300 buffer
[off
+ 8] = '\0';
301 buffer
[off
+ 17] = '\0';
303 /* Display the result. */
304 (*gdb_kod_display
) (sync_ids
[i
]);
305 (*gdb_kod_display
) ("\t");
306 (*gdb_kod_display
) (&buffer
[off
]);
307 (*gdb_kod_display
) ("\t");
308 (*gdb_kod_display
) (&buffer
[off
+ 9]);
309 (*gdb_kod_display
) ("\n");
314 for (i
= 0; i
< sync_next
; ++i
)