]> git.proxmox.com Git - mirror_qemu.git/blame - replay/replay-char.c
Merge tag 'pull-aspeed-20240201' of https://github.com/legoater/qemu into staging
[mirror_qemu.git] / replay / replay-char.c
CommitLineData
33577b47
PD
1/*
2 * replay-char.c
3 *
4 * Copyright (c) 2010-2016 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
33577b47
PD
12#include "qemu/osdep.h"
13#include "qemu/error-report.h"
14#include "sysemu/replay.h"
15#include "replay-internal.h"
8228e353 16#include "chardev/char.h"
33577b47
PD
17
18/* Char drivers that generate qemu_chr_be_write events
19 that should be saved into the log. */
0ec7b3e7 20static Chardev **char_drivers;
33577b47
PD
21static int drivers_count;
22
23/* Char event attributes. */
24typedef struct CharEvent {
25 int id;
26 uint8_t *buf;
27 size_t len;
28} CharEvent;
29
0ec7b3e7 30static int find_char_driver(Chardev *chr)
33577b47
PD
31{
32 int i = 0;
33 for ( ; i < drivers_count ; ++i) {
34 if (char_drivers[i] == chr) {
35 return i;
36 }
37 }
38 return -1;
39}
40
0ec7b3e7 41void replay_register_char_driver(Chardev *chr)
33577b47
PD
42{
43 if (replay_mode == REPLAY_MODE_NONE) {
44 return;
45 }
46 char_drivers = g_realloc(char_drivers,
47 sizeof(*char_drivers) * (drivers_count + 1));
48 char_drivers[drivers_count++] = chr;
49}
50
8f9abdf5 51void replay_chr_be_write(Chardev *s, const uint8_t *buf, int len)
33577b47 52{
b21e2380 53 CharEvent *event = g_new0(CharEvent, 1);
33577b47
PD
54
55 event->id = find_char_driver(s);
56 if (event->id < 0) {
57 fprintf(stderr, "Replay: cannot find char driver\n");
58 exit(1);
59 }
60 event->buf = g_malloc(len);
61 memcpy(event->buf, buf, len);
62 event->len = len;
63
64 replay_add_event(REPLAY_ASYNC_EVENT_CHAR_READ, event, NULL, 0);
65}
66
67void replay_event_char_read_run(void *opaque)
68{
69 CharEvent *event = (CharEvent *)opaque;
70
71 qemu_chr_be_write_impl(char_drivers[event->id], event->buf,
72 (int)event->len);
73
74 g_free(event->buf);
75 g_free(event);
76}
77
78void replay_event_char_read_save(void *opaque)
79{
80 CharEvent *event = (CharEvent *)opaque;
81
82 replay_put_byte(event->id);
83 replay_put_array(event->buf, event->len);
84}
85
86void *replay_event_char_read_load(void)
87{
b21e2380 88 CharEvent *event = g_new0(CharEvent, 1);
33577b47
PD
89
90 event->id = replay_get_byte();
91 replay_get_array_alloc(&event->buf, &event->len);
92
93 return event;
94}
95
96void replay_char_write_event_save(int res, int offset)
97{
d759c951
AB
98 g_assert(replay_mutex_locked());
99
33577b47 100 replay_save_instructions();
33577b47
PD
101 replay_put_event(EVENT_CHAR_WRITE);
102 replay_put_dword(res);
103 replay_put_dword(offset);
33577b47
PD
104}
105
106void replay_char_write_event_load(int *res, int *offset)
107{
d759c951
AB
108 g_assert(replay_mutex_locked());
109
33577b47 110 replay_account_executed_instructions();
33577b47
PD
111 if (replay_next_event_is(EVENT_CHAR_WRITE)) {
112 *res = replay_get_dword();
113 *offset = replay_get_dword();
114 replay_finish_event();
33577b47 115 } else {
fd84325f 116 replay_sync_error("Missing character write event in the replay log");
33577b47
PD
117 }
118}
119
120int replay_char_read_all_load(uint8_t *buf)
121{
d759c951
AB
122 g_assert(replay_mutex_locked());
123
33577b47
PD
124 if (replay_next_event_is(EVENT_CHAR_READ_ALL)) {
125 size_t size;
126 int res;
127 replay_get_array(buf, &size);
128 replay_finish_event();
33577b47
PD
129 res = (int)size;
130 assert(res >= 0);
131 return res;
132 } else if (replay_next_event_is(EVENT_CHAR_READ_ALL_ERROR)) {
133 int res = replay_get_dword();
134 replay_finish_event();
33577b47
PD
135 return res;
136 } else {
fd84325f 137 replay_sync_error("Missing character read all event in the replay log");
33577b47
PD
138 }
139}
140
141void replay_char_read_all_save_error(int res)
142{
d759c951 143 g_assert(replay_mutex_locked());
33577b47
PD
144 assert(res < 0);
145 replay_save_instructions();
33577b47
PD
146 replay_put_event(EVENT_CHAR_READ_ALL_ERROR);
147 replay_put_dword(res);
33577b47
PD
148}
149
150void replay_char_read_all_save_buf(uint8_t *buf, int offset)
151{
d759c951 152 g_assert(replay_mutex_locked());
33577b47 153 replay_save_instructions();
33577b47
PD
154 replay_put_event(EVENT_CHAR_READ_ALL);
155 replay_put_array(buf, offset);
33577b47 156}