]> git.proxmox.com Git - mirror_qemu.git/blame - replay/replay.c
disas/m68k: Avoid unintended sign extension in get_field()
[mirror_qemu.git] / replay / replay.c
CommitLineData
d73abd6d
PD
1/*
2 * replay.c
3 *
4 * Copyright (c) 2010-2015 Institute for System Programming
5 * of the Russian Academy of Sciences.
6 *
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
9 *
10 */
11
d38ea87a 12#include "qemu/osdep.h"
da34e65c 13#include "qapi/error.h"
26bc60ac 14#include "qemu-common.h"
d73abd6d 15#include "sysemu/replay.h"
26bc60ac
PD
16#include "replay-internal.h"
17#include "qemu/timer.h"
8b427044 18#include "qemu/main-loop.h"
b60c48a7 19#include "sysemu/sysemu.h"
7615936e
PD
20#include "qemu/error-report.h"
21
22/* Current version of the replay mechanism.
23 Increase it when file format changes. */
646c5478 24#define REPLAY_VERSION 0xe02005
7615936e
PD
25/* Size of replay log header */
26#define HEADER_SIZE (sizeof(uint32_t) + sizeof(uint64_t))
d73abd6d
PD
27
28ReplayMode replay_mode = REPLAY_MODE_NONE;
9c2037d0 29char *replay_snapshot;
26bc60ac 30
7615936e
PD
31/* Name of replay file */
32static char *replay_filename;
26bc60ac 33ReplayState replay_state;
0194749a 34static GSList *replay_blockers;
26bc60ac
PD
35
36bool replay_next_event_is(int event)
37{
38 bool res = false;
39
40 /* nothing to skip - not all instructions used */
41 if (replay_state.instructions_count != 0) {
f186d64d 42 assert(replay_state.data_kind == EVENT_INSTRUCTION);
26bc60ac
PD
43 return event == EVENT_INSTRUCTION;
44 }
45
46 while (true) {
f186d64d 47 if (event == replay_state.data_kind) {
26bc60ac
PD
48 res = true;
49 }
f186d64d 50 switch (replay_state.data_kind) {
b60c48a7
PD
51 case EVENT_SHUTDOWN:
52 replay_finish_event();
53 qemu_system_shutdown_request();
54 break;
26bc60ac
PD
55 default:
56 /* clock, time_t, checkpoint and other events */
57 return res;
58 }
59 }
60 return res;
61}
62
63uint64_t replay_get_current_step(void)
64{
65 return cpu_get_icount_raw();
66}
8b427044
PD
67
68int replay_get_instructions(void)
69{
70 int res = 0;
71 replay_mutex_lock();
72 if (replay_next_event_is(EVENT_INSTRUCTION)) {
73 res = replay_state.instructions_count;
74 }
75 replay_mutex_unlock();
76 return res;
77}
78
79void replay_account_executed_instructions(void)
80{
81 if (replay_mode == REPLAY_MODE_PLAY) {
82 replay_mutex_lock();
83 if (replay_state.instructions_count > 0) {
84 int count = (int)(replay_get_current_step()
85 - replay_state.current_step);
86 replay_state.instructions_count -= count;
87 replay_state.current_step += count;
88 if (replay_state.instructions_count == 0) {
f186d64d 89 assert(replay_state.data_kind == EVENT_INSTRUCTION);
8b427044
PD
90 replay_finish_event();
91 /* Wake up iothread. This is required because
92 timers will not expire until clock counters
93 will be read from the log. */
94 qemu_notify_event();
95 }
96 }
97 replay_mutex_unlock();
98 }
99}
6f060969
PD
100
101bool replay_exception(void)
102{
103 if (replay_mode == REPLAY_MODE_RECORD) {
104 replay_save_instructions();
105 replay_mutex_lock();
106 replay_put_event(EVENT_EXCEPTION);
107 replay_mutex_unlock();
108 return true;
109 } else if (replay_mode == REPLAY_MODE_PLAY) {
110 bool res = replay_has_exception();
111 if (res) {
112 replay_mutex_lock();
113 replay_finish_event();
114 replay_mutex_unlock();
115 }
116 return res;
117 }
118
119 return true;
120}
121
122bool replay_has_exception(void)
123{
124 bool res = false;
125 if (replay_mode == REPLAY_MODE_PLAY) {
126 replay_account_executed_instructions();
127 replay_mutex_lock();
128 res = replay_next_event_is(EVENT_EXCEPTION);
129 replay_mutex_unlock();
130 }
131
132 return res;
133}
134
135bool replay_interrupt(void)
136{
137 if (replay_mode == REPLAY_MODE_RECORD) {
138 replay_save_instructions();
139 replay_mutex_lock();
140 replay_put_event(EVENT_INTERRUPT);
141 replay_mutex_unlock();
142 return true;
143 } else if (replay_mode == REPLAY_MODE_PLAY) {
144 bool res = replay_has_interrupt();
145 if (res) {
146 replay_mutex_lock();
147 replay_finish_event();
148 replay_mutex_unlock();
149 }
150 return res;
151 }
152
153 return true;
154}
155
156bool replay_has_interrupt(void)
157{
158 bool res = false;
159 if (replay_mode == REPLAY_MODE_PLAY) {
160 replay_account_executed_instructions();
161 replay_mutex_lock();
162 res = replay_next_event_is(EVENT_INTERRUPT);
163 replay_mutex_unlock();
164 }
165 return res;
166}
b60c48a7
PD
167
168void replay_shutdown_request(void)
169{
170 if (replay_mode == REPLAY_MODE_RECORD) {
171 replay_mutex_lock();
172 replay_put_event(EVENT_SHUTDOWN);
173 replay_mutex_unlock();
174 }
175}
8bd7f71d
PD
176
177bool replay_checkpoint(ReplayCheckpoint checkpoint)
178{
179 bool res = false;
180 assert(EVENT_CHECKPOINT + checkpoint <= EVENT_CHECKPOINT_LAST);
181 replay_save_instructions();
182
183 if (!replay_file) {
184 return true;
185 }
186
187 replay_mutex_lock();
188
189 if (replay_mode == REPLAY_MODE_PLAY) {
190 if (replay_next_event_is(EVENT_CHECKPOINT + checkpoint)) {
191 replay_finish_event();
f186d64d 192 } else if (replay_state.data_kind != EVENT_ASYNC) {
8bd7f71d
PD
193 res = false;
194 goto out;
195 }
196 replay_read_events(checkpoint);
197 /* replay_read_events may leave some unread events.
198 Return false if not all of the events associated with
199 checkpoint were processed */
f186d64d 200 res = replay_state.data_kind != EVENT_ASYNC;
8bd7f71d
PD
201 } else if (replay_mode == REPLAY_MODE_RECORD) {
202 replay_put_event(EVENT_CHECKPOINT + checkpoint);
203 replay_save_events(checkpoint);
204 res = true;
205 }
206out:
207 replay_mutex_unlock();
208 return res;
209}
7615936e
PD
210
211static void replay_enable(const char *fname, int mode)
212{
213 const char *fmode = NULL;
214 assert(!replay_file);
215
216 switch (mode) {
217 case REPLAY_MODE_RECORD:
218 fmode = "wb";
219 break;
220 case REPLAY_MODE_PLAY:
221 fmode = "rb";
222 break;
223 default:
224 fprintf(stderr, "Replay: internal error: invalid replay mode\n");
225 exit(1);
226 }
227
228 atexit(replay_finish);
229
230 replay_mutex_init();
231
232 replay_file = fopen(fname, fmode);
233 if (replay_file == NULL) {
234 fprintf(stderr, "Replay: open %s: %s\n", fname, strerror(errno));
235 exit(1);
236 }
237
238 replay_filename = g_strdup(fname);
239
240 replay_mode = mode;
f186d64d 241 replay_state.data_kind = -1;
7615936e
PD
242 replay_state.instructions_count = 0;
243 replay_state.current_step = 0;
f186d64d 244 replay_state.has_unread_data = 0;
7615936e
PD
245
246 /* skip file header for RECORD and check it for PLAY */
247 if (replay_mode == REPLAY_MODE_RECORD) {
248 fseek(replay_file, HEADER_SIZE, SEEK_SET);
249 } else if (replay_mode == REPLAY_MODE_PLAY) {
250 unsigned int version = replay_get_dword();
251 if (version != REPLAY_VERSION) {
252 fprintf(stderr, "Replay: invalid input log file version\n");
253 exit(1);
254 }
255 /* go to the beginning */
256 fseek(replay_file, HEADER_SIZE, SEEK_SET);
257 replay_fetch_data_kind();
258 }
259
260 replay_init_events();
261}
262
263void replay_configure(QemuOpts *opts)
264{
265 const char *fname;
266 const char *rr;
267 ReplayMode mode = REPLAY_MODE_NONE;
890ad550
EH
268 Location loc;
269
270 if (!opts) {
271 return;
272 }
273
274 loc_push_none(&loc);
275 qemu_opts_loc_restore(opts);
7615936e
PD
276
277 rr = qemu_opt_get(opts, "rr");
278 if (!rr) {
279 /* Just enabling icount */
d9d3aaea 280 goto out;
7615936e
PD
281 } else if (!strcmp(rr, "record")) {
282 mode = REPLAY_MODE_RECORD;
283 } else if (!strcmp(rr, "replay")) {
284 mode = REPLAY_MODE_PLAY;
285 } else {
286 error_report("Invalid icount rr option: %s", rr);
287 exit(1);
288 }
289
290 fname = qemu_opt_get(opts, "rrfile");
291 if (!fname) {
292 error_report("File name not specified for replay");
293 exit(1);
294 }
295
9c2037d0 296 replay_snapshot = g_strdup(qemu_opt_get(opts, "rrsnapshot"));
306e196f 297 replay_vmstate_register();
7615936e 298 replay_enable(fname, mode);
890ad550 299
d9d3aaea 300out:
890ad550 301 loc_pop(&loc);
7615936e
PD
302}
303
304void replay_start(void)
305{
306 if (replay_mode == REPLAY_MODE_NONE) {
307 return;
308 }
309
0194749a 310 if (replay_blockers) {
c29b77f9 311 error_reportf_err(replay_blockers->data, "Record/replay: ");
0194749a
PD
312 exit(1);
313 }
4c27b859
PD
314 if (!use_icount) {
315 error_report("Please enable icount to use record/replay");
316 exit(1);
317 }
0194749a 318
7615936e
PD
319 /* Timer for snapshotting will be set up here. */
320
321 replay_enable_events();
322}
323
324void replay_finish(void)
325{
326 if (replay_mode == REPLAY_MODE_NONE) {
327 return;
328 }
329
330 replay_save_instructions();
331
332 /* finalize the file */
333 if (replay_file) {
334 if (replay_mode == REPLAY_MODE_RECORD) {
335 /* write end event */
336 replay_put_event(EVENT_END);
337
338 /* write header */
339 fseek(replay_file, 0, SEEK_SET);
340 replay_put_dword(REPLAY_VERSION);
341 }
342
343 fclose(replay_file);
344 replay_file = NULL;
345 }
346 if (replay_filename) {
347 g_free(replay_filename);
348 replay_filename = NULL;
349 }
350
9c2037d0
PD
351 g_free(replay_snapshot);
352 replay_snapshot = NULL;
353
7615936e
PD
354 replay_finish_events();
355 replay_mutex_destroy();
356}
0194749a
PD
357
358void replay_add_blocker(Error *reason)
359{
360 replay_blockers = g_slist_prepend(replay_blockers, reason);
361}