xref: /qemu/include/sysemu/replay.h (revision 33848cee)
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-types.h"
16 
17 /* replay clock kinds */
18 enum ReplayClockKind {
19     /* host_clock */
20     REPLAY_CLOCK_HOST,
21     /* virtual_rt_clock */
22     REPLAY_CLOCK_VIRTUAL_RT,
23     REPLAY_CLOCK_COUNT
24 };
25 typedef enum ReplayClockKind ReplayClockKind;
26 
27 /* IDs of the checkpoints */
28 enum ReplayCheckpoint {
29     CHECKPOINT_CLOCK_WARP_START,
30     CHECKPOINT_CLOCK_WARP_ACCOUNT,
31     CHECKPOINT_RESET_REQUESTED,
32     CHECKPOINT_SUSPEND_REQUESTED,
33     CHECKPOINT_CLOCK_VIRTUAL,
34     CHECKPOINT_CLOCK_HOST,
35     CHECKPOINT_CLOCK_VIRTUAL_RT,
36     CHECKPOINT_INIT,
37     CHECKPOINT_RESET,
38     CHECKPOINT_COUNT
39 };
40 typedef enum ReplayCheckpoint ReplayCheckpoint;
41 
42 typedef struct ReplayNetState ReplayNetState;
43 
44 extern ReplayMode replay_mode;
45 
46 /* Replay process control functions */
47 
48 /*! Enables recording or saving event log with specified parameters */
49 void replay_configure(struct QemuOpts *opts);
50 /*! Initializes timers used for snapshotting and enables events recording */
51 void replay_start(void);
52 /*! Closes replay log file and frees other resources. */
53 void replay_finish(void);
54 /*! Adds replay blocker with the specified error description */
55 void replay_add_blocker(Error *reason);
56 
57 /* Processing the instructions */
58 
59 /*! Returns number of executed instructions. */
60 uint64_t replay_get_current_step(void);
61 /*! Returns number of instructions to execute in replay mode. */
62 int replay_get_instructions(void);
63 /*! Updates instructions counter in replay mode. */
64 void replay_account_executed_instructions(void);
65 
66 /* Interrupts and exceptions */
67 
68 /*! Called by exception handler to write or read
69     exception processing events. */
70 bool replay_exception(void);
71 /*! Used to determine that exception is pending.
72     Does not proceed to the next event in the log. */
73 bool replay_has_exception(void);
74 /*! Called by interrupt handlers to write or read
75     interrupt processing events.
76     \return true if interrupt should be processed */
77 bool replay_interrupt(void);
78 /*! Tries to read interrupt event from the file.
79     Returns true, when interrupt request is pending */
80 bool replay_has_interrupt(void);
81 
82 /* Processing clocks and other time sources */
83 
84 /*! Save the specified clock */
85 int64_t replay_save_clock(ReplayClockKind kind, int64_t clock);
86 /*! Read the specified clock from the log or return cached data */
87 int64_t replay_read_clock(ReplayClockKind kind);
88 /*! Saves or reads the clock depending on the current replay mode. */
89 #define REPLAY_CLOCK(clock, value)                                      \
90     (replay_mode == REPLAY_MODE_PLAY ? replay_read_clock((clock))       \
91         : replay_mode == REPLAY_MODE_RECORD                             \
92             ? replay_save_clock((clock), (value))                       \
93         : (value))
94 
95 /* Events */
96 
97 /*! Called when qemu shutdown is requested. */
98 void replay_shutdown_request(void);
99 /*! Should be called at check points in the execution.
100     These check points are skipped, if they were not met.
101     Saves checkpoint in the SAVE mode and validates in the PLAY mode.
102     Returns 0 in PLAY mode if checkpoint was not found.
103     Returns 1 in all other cases. */
104 bool replay_checkpoint(ReplayCheckpoint checkpoint);
105 
106 /* Asynchronous events queue */
107 
108 /*! Disables storing events in the queue */
109 void replay_disable_events(void);
110 /*! Enables storing events in the queue */
111 void replay_enable_events(void);
112 /*! Returns true when saving events is enabled */
113 bool replay_events_enabled(void);
114 /*! Adds bottom half event to the queue */
115 void replay_bh_schedule_event(QEMUBH *bh);
116 /*! Adds input event to the queue */
117 void replay_input_event(QemuConsole *src, InputEvent *evt);
118 /*! Adds input sync event to the queue */
119 void replay_input_sync_event(void);
120 /*! Adds block layer event to the queue */
121 void replay_block_event(QEMUBH *bh, uint64_t id);
122 /*! Returns ID for the next block event */
123 uint64_t blkreplay_next_id(void);
124 
125 /* Character device */
126 
127 /*! Registers char driver to save it's events */
128 void replay_register_char_driver(struct CharDriverState *chr);
129 /*! Saves write to char device event to the log */
130 void replay_chr_be_write(struct CharDriverState *s, uint8_t *buf, int len);
131 /*! Writes char write return value to the replay log. */
132 void replay_char_write_event_save(int res, int offset);
133 /*! Reads char write return value from the replay log. */
134 void replay_char_write_event_load(int *res, int *offset);
135 /*! Reads information about read_all character event. */
136 int replay_char_read_all_load(uint8_t *buf);
137 /*! Writes character read_all error code into the replay log. */
138 void replay_char_read_all_save_error(int res);
139 /*! Writes character read_all execution result into the replay log. */
140 void replay_char_read_all_save_buf(uint8_t *buf, int offset);
141 
142 /* Network */
143 
144 /*! Registers replay network filter attached to some backend. */
145 ReplayNetState *replay_register_net(NetFilterState *nfs);
146 /*! Unregisters replay network filter. */
147 void replay_unregister_net(ReplayNetState *rns);
148 /*! Called to write network packet to the replay log. */
149 void replay_net_packet_event(ReplayNetState *rns, unsigned flags,
150                              const struct iovec *iov, int iovcnt);
151 
152 #endif
153