merge from gcc
[gdb/gnu.git] / gdb / remote-notif.c
blob0d5927912b1b190a913c79a34fd60ac9434013a3
1 /* Remote notification in GDB protocol
3 Copyright (C) 1988-2013 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 /* Remote async notification is sent from remote target over RSP.
21 Each type of notification is represented by an object of
22 'struct notif', which has a field 'pending_reply'. It is not
23 NULL when GDB receives a notification from GDBserver, but hasn't
24 acknowledge yet. Before GDB acknowledges the notification,
25 GDBserver shouldn't send notification again (see the header comments
26 in gdbserver/notif.c).
28 Notifications are processed in an almost-unified approach for both
29 all-stop mode and non-stop mode, except the timing to process them.
30 In non-stop mode, notifications are processed in
31 remote_async_get_pending_events_handler, while in all-stop mode,
32 they are processed in remote_resume. */
34 #include "defs.h"
35 #include "remote.h"
36 #include "remote-notif.h"
37 #include "observer.h"
38 #include "event-loop.h"
39 #include "target.h"
40 #include "inferior.h"
41 #include "gdbcmd.h"
43 #include <string.h>
45 int notif_debug = 0;
47 /* Supported clients of notifications. */
49 static struct notif_client *notifs[] =
51 &notif_client_stop,
54 gdb_static_assert (ARRAY_SIZE (notifs) == REMOTE_NOTIF_LAST);
56 static void do_notif_event_xfree (void *arg);
58 /* Parse the BUF for the expected notification NC, and send packet to
59 acknowledge. */
61 void
62 remote_notif_ack (struct notif_client *nc, char *buf)
64 struct notif_event *event = nc->alloc_event ();
65 struct cleanup *old_chain
66 = make_cleanup (do_notif_event_xfree, event);
68 if (notif_debug)
69 fprintf_unfiltered (gdb_stdlog, "notif: ack '%s'\n",
70 nc->ack_command);
72 nc->parse (nc, buf, event);
73 nc->ack (nc, buf, event);
75 discard_cleanups (old_chain);
78 /* Parse the BUF for the expected notification NC. */
80 struct notif_event *
81 remote_notif_parse (struct notif_client *nc, char *buf)
83 struct notif_event *event = nc->alloc_event ();
84 struct cleanup *old_chain
85 = make_cleanup (do_notif_event_xfree, event);
87 if (notif_debug)
88 fprintf_unfiltered (gdb_stdlog, "notif: parse '%s'\n", nc->name);
90 nc->parse (nc, buf, event);
92 discard_cleanups (old_chain);
93 return event;
96 DEFINE_QUEUE_P (notif_client_p);
98 /* Process notifications in STATE's notification queue one by one.
99 EXCEPT is not expected in the queue. */
101 void
102 remote_notif_process (struct remote_notif_state *state,
103 struct notif_client *except)
105 while (!QUEUE_is_empty (notif_client_p, state->notif_queue))
107 struct notif_client *nc = QUEUE_deque (notif_client_p,
108 state->notif_queue);
110 gdb_assert (nc != except);
112 if (nc->can_get_pending_events (nc))
113 remote_notif_get_pending_events (nc);
117 static void
118 remote_async_get_pending_events_handler (gdb_client_data data)
120 gdb_assert (non_stop);
121 remote_notif_process (data, NULL);
124 /* Remote notification handler. Parse BUF, queue notification and
125 update STATE. */
127 void
128 handle_notification (struct remote_notif_state *state, char *buf)
130 struct notif_client *nc = NULL;
131 int i;
133 for (i = 0; i < ARRAY_SIZE (notifs); i++)
135 nc = notifs[i];
136 if (strncmp (buf, nc->name, strlen (nc->name)) == 0
137 && buf[strlen (nc->name)] == ':')
138 break;
141 /* We ignore notifications we don't recognize, for compatibility
142 with newer stubs. */
143 if (nc == NULL)
144 return;
146 if (state->pending_event[nc->id] != NULL)
148 /* We've already parsed the in-flight reply, but the stub for some
149 reason thought we didn't, possibly due to timeout on its side.
150 Just ignore it. */
151 if (notif_debug)
152 fprintf_unfiltered (gdb_stdlog,
153 "notif: ignoring resent notification\n");
155 else
157 struct notif_event *event
158 = remote_notif_parse (nc, buf + strlen (nc->name) + 1);
160 /* Be careful to only set it after parsing, since an error
161 may be thrown then. */
162 state->pending_event[nc->id] = event;
164 /* Notify the event loop there's a stop reply to acknowledge
165 and that there may be more events to fetch. */
166 QUEUE_enque (notif_client_p, state->notif_queue, nc);
167 if (non_stop)
169 /* In non-stop, We mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
170 in order to go on what we were doing and postpone
171 querying notification events to some point safe to do so.
172 See details in the function comment of
173 remote.c:remote_notif_get_pending_events.
175 In all-stop, GDB may be blocked to wait for the reply, we
176 shouldn't return to event loop until the expected reply
177 arrives. For example:
179 1.1) --> vCont;c
180 GDB expects getting stop reply 'T05 thread:2'.
181 1.2) <-- %Notif
182 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
184 After step #1.2, we return to the event loop, which
185 notices there is a new event on the
186 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN and calls the
187 handler, which will send 'vNotif' packet.
188 1.3) --> vNotif
189 It is not safe to start a new sequence, because target
190 is still running and GDB is expecting the stop reply
191 from stub.
193 To solve this, whenever we parse a notification
194 successfully, we don't mark the
195 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN and let GDB blocked
196 there as before to get the sequence done.
198 2.1) --> vCont;c
199 GDB expects getting stop reply 'T05 thread:2'
200 2.2) <-- %Notif
201 <Don't mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
202 2.3) <-- T05 thread:2
204 These pending notifications can be processed later. */
205 mark_async_event_handler (state->get_pending_events_token);
208 if (notif_debug)
209 fprintf_unfiltered (gdb_stdlog,
210 "notif: Notification '%s' captured\n",
211 nc->name);
215 /* Invoke destructor of EVENT and xfree it. */
217 void
218 notif_event_xfree (struct notif_event *event)
220 if (event != NULL && event->dtr != NULL)
221 event->dtr (event);
223 xfree (event);
226 /* Cleanup wrapper. */
228 static void
229 do_notif_event_xfree (void *arg)
231 notif_event_xfree (arg);
234 /* Return an allocated remote_notif_state. */
236 struct remote_notif_state *
237 remote_notif_state_allocate (void)
239 struct remote_notif_state *notif_state = xzalloc (sizeof (*notif_state));
241 notif_state->notif_queue = QUEUE_alloc (notif_client_p, NULL);
243 /* Register async_event_handler for notification. */
245 notif_state->get_pending_events_token
246 = create_async_event_handler (remote_async_get_pending_events_handler,
247 notif_state);
249 return notif_state;
252 /* Free STATE and its fields. */
254 void
255 remote_notif_state_xfree (struct remote_notif_state *state)
257 int i;
259 QUEUE_free (notif_client_p, state->notif_queue);
261 /* Unregister async_event_handler for notification. */
262 if (state->get_pending_events_token != NULL)
263 delete_async_event_handler (&state->get_pending_events_token);
265 for (i = 0; i < REMOTE_NOTIF_LAST; i++)
266 notif_event_xfree (state->pending_event[i]);
268 xfree (state);
271 /* -Wmissing-prototypes */
272 extern initialize_file_ftype _initialize_notif;
274 void
275 _initialize_notif (void)
277 add_setshow_boolean_cmd ("notification", no_class, &notif_debug,
278 _("\
279 Set debugging of async remote notification."), _("\
280 Show debugging of async remote notification."), _("\
281 When non-zero, debugging output about async remote notifications"
282 " is enabled."),
283 NULL,
284 NULL,
285 &setdebuglist, &showdebuglist);