xref: /qemu/include/system/replay.h (revision cda382594b7ea50aff5f672f32767f9f9fef4c12)
1 #ifndef REPLAY_H
2 #define REPLAY_H
3 
4 /*
5  * replay.h
6  *
7  * Copyright (c) 2010-2015 Institute for System Programming
8  *                         of the Russian Academy of Sciences.
9  *
10  * This work is licensed under the terms of the GNU GPL, version 2 or later.
11  * See the COPYING file in the top-level directory.
12  *
13  */
14 
15 #include "qapi/qapi-types-misc.h"
16 #include "qapi/qapi-types-run-state.h"
17 #include "qapi/qapi-types-replay.h"
18 #include "qapi/qapi-types-ui.h"
19 #include "block/aio.h"
20 
21 /* replay clock kinds */
22 enum ReplayClockKind {
23     /* host_clock */
24     REPLAY_CLOCK_HOST,
25     /* virtual_rt_clock */
26     REPLAY_CLOCK_VIRTUAL_RT,
27     REPLAY_CLOCK_COUNT
28 };
29 typedef enum ReplayClockKind ReplayClockKind;
30 
31 /* IDs of the checkpoints */
32 enum ReplayCheckpoint {
33     CHECKPOINT_CLOCK_WARP_START,
34     CHECKPOINT_CLOCK_WARP_ACCOUNT,
35     CHECKPOINT_RESET_REQUESTED,
36     CHECKPOINT_SUSPEND_REQUESTED,
37     CHECKPOINT_CLOCK_VIRTUAL,
38     CHECKPOINT_CLOCK_HOST,
39     CHECKPOINT_CLOCK_VIRTUAL_RT,
40     CHECKPOINT_INIT,
41     CHECKPOINT_RESET,
42     CHECKPOINT_COUNT
43 };
44 typedef enum ReplayCheckpoint ReplayCheckpoint;
45 
46 typedef struct ReplayNetState ReplayNetState;
47 
48 extern ReplayMode replay_mode;
49 
50 /* Name of the initial VM snapshot */
51 extern char *replay_snapshot;
52 
53 /* Replay locking
54  *
55  * The locks are needed to protect the shared structures and log file
56  * when doing record/replay. They also are the main sync-point between
57  * the main-loop thread and the vCPU thread. This was a role
58  * previously filled by the BQL which has been busy trying to reduce
59  * its impact across the code. This ensures blocks of events stay
60  * sequential and reproducible.
61  */
62 
63 void replay_mutex_lock(void);
64 void replay_mutex_unlock(void);
65 
66 /* Replay process control functions */
67 
68 /*! Enables recording or saving event log with specified parameters */
69 void replay_configure(struct QemuOpts *opts);
70 /*! Initializes timers used for snapshotting and enables events recording */
71 void replay_start(void);
72 /*! Closes replay log file and frees other resources. */
73 void replay_finish(void);
74 /*! Adds replay blocker with the specified error description */
75 void replay_add_blocker(Error *reason);
76 /* Returns name of the replay log file */
77 const char *replay_get_filename(void);
78 /*
79  * Start making one step in backward direction.
80  * Used by gdbstub for backwards debugging.
81  * Returns true on success.
82  */
83 bool replay_reverse_step(void);
84 /*
85  * Start searching the last breakpoint/watchpoint.
86  * Used by gdbstub for backwards debugging.
87  * Returns true if the process successfully started.
88  */
89 bool replay_reverse_continue(void);
90 /*
91  * Returns true if replay module is processing
92  * reverse_continue or reverse_step request
93  */
94 bool replay_running_debug(void);
95 /* Called in reverse debugging mode to collect breakpoint information */
96 void replay_breakpoint(void);
97 
98 /* Processing the instructions */
99 
100 /*! Returns number of executed instructions. */
101 uint64_t replay_get_current_icount(void);
102 /*! Returns number of instructions to execute in replay mode. */
103 int replay_get_instructions(void);
104 /*! Updates instructions counter in replay mode. */
105 void replay_account_executed_instructions(void);
106 
107 /* Interrupts and exceptions */
108 
109 /*! Called by exception handler to write or read
110     exception processing events. */
111 bool replay_exception(void);
112 /*! Used to determine that exception is pending.
113     Does not proceed to the next event in the log. */
114 bool replay_has_exception(void);
115 /*! Called by interrupt handlers to write or read
116     interrupt processing events.
117     \return true if interrupt should be processed */
118 bool replay_interrupt(void);
119 /*! Tries to read interrupt event from the file.
120     Returns true, when interrupt request is pending */
121 bool replay_has_interrupt(void);
122 
123 /* Processing clocks and other time sources */
124 
125 /*! Save the specified clock */
126 int64_t replay_save_clock(ReplayClockKind kind, int64_t clock,
127                           int64_t raw_icount);
128 /*! Read the specified clock from the log or return cached data */
129 int64_t replay_read_clock(ReplayClockKind kind);
130 /*! Saves or reads the clock depending on the current replay mode. */
131 #define REPLAY_CLOCK(clock, value)                                      \
132     (replay_mode == REPLAY_MODE_PLAY ? replay_read_clock((clock))       \
133         : replay_mode == REPLAY_MODE_RECORD                             \
134             ? replay_save_clock((clock), (value), icount_get_raw()) \
135         : (value))
136 #define REPLAY_CLOCK_LOCKED(clock, value)                               \
137     (replay_mode == REPLAY_MODE_PLAY ? replay_read_clock((clock))       \
138         : replay_mode == REPLAY_MODE_RECORD                             \
139             ? replay_save_clock((clock), (value), icount_get_raw_locked()) \
140         : (value))
141 
142 /* Processing data from random generators */
143 
144 /* Saves the values from the random number generator */
145 void replay_save_random(int ret, void *buf, size_t len);
146 /* Loads the saved values for the random number generator */
147 int replay_read_random(void *buf, size_t len);
148 
149 /* Events */
150 
151 /*! Called when qemu shutdown is requested. */
152 void replay_shutdown_request(ShutdownCause cause);
153 /*! Should be called at check points in the execution.
154     These check points are skipped, if they were not met.
155     Saves checkpoint in the SAVE mode and validates in the PLAY mode.
156     Returns 0 in PLAY mode if checkpoint was not found.
157     Returns 1 in all other cases. */
158 bool replay_checkpoint(ReplayCheckpoint checkpoint);
159 /*! Used to determine that checkpoint is pending.
160     Does not proceed to the next event in the log. */
161 bool replay_has_checkpoint(void);
162 
163 /* Asynchronous events queue */
164 
165 /*! Disables storing events in the queue */
166 void replay_disable_events(void);
167 /*! Enables storing events in the queue */
168 void replay_enable_events(void);
169 /*! Returns true when saving events is enabled */
170 bool replay_events_enabled(void);
171 /* Flushes events queue */
172 void replay_flush_events(void);
173 /*! Adds bottom half event to the queue */
174 void replay_bh_schedule_event(QEMUBH *bh);
175 /* Adds oneshot bottom half event to the queue */
176 void replay_bh_schedule_oneshot_event(AioContext *ctx,
177     QEMUBHFunc *cb, void *opaque);
178 /*! Adds input event to the queue */
179 void replay_input_event(QemuConsole *src, InputEvent *evt);
180 /*! Adds input sync event to the queue */
181 void replay_input_sync_event(void);
182 /*! Adds block layer event to the queue */
183 void replay_block_event(QEMUBH *bh, uint64_t id);
184 /*! Returns ID for the next block event */
185 uint64_t blkreplay_next_id(void);
186 
187 /* Character device */
188 
189 /*! Registers char driver to save it's events */
190 void replay_register_char_driver(struct Chardev *chr);
191 /*! Saves write to char device event to the log */
192 void replay_chr_be_write(struct Chardev *s, uint8_t *buf, int len);
193 /*! Writes char write return value to the replay log. */
194 void replay_char_write_event_save(int res, int offset);
195 /*! Reads char write return value from the replay log. */
196 void replay_char_write_event_load(int *res, int *offset);
197 /*! Reads information about read_all character event. */
198 int replay_char_read_all_load(uint8_t *buf);
199 /*! Writes character read_all error code into the replay log. */
200 void replay_char_read_all_save_error(int res);
201 /*! Writes character read_all execution result into the replay log. */
202 void replay_char_read_all_save_buf(uint8_t *buf, int offset);
203 
204 /* Network */
205 
206 /*! Registers replay network filter attached to some backend. */
207 ReplayNetState *replay_register_net(NetFilterState *nfs);
208 /*! Unregisters replay network filter. */
209 void replay_unregister_net(ReplayNetState *rns);
210 /*! Called to write network packet to the replay log. */
211 void replay_net_packet_event(ReplayNetState *rns, unsigned flags,
212                              const struct iovec *iov, int iovcnt);
213 
214 /* Audio */
215 
216 /*! Saves/restores number of played samples of audio out operation. */
217 void replay_audio_out(size_t *played);
218 /*! Saves/restores recorded samples of audio in operation. */
219 void replay_audio_in(size_t *recorded, void *samples, size_t *wpos, size_t size);
220 
221 /* VM state operations */
222 
223 /*! Called at the start of execution.
224     Loads or saves initial vmstate depending on execution mode. */
225 void replay_vmstate_init(void);
226 /*! Called to ensure that replay state is consistent and VM snapshot
227     can be created */
228 bool replay_can_snapshot(void);
229 
230 #endif
231